Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions pkgs/tools/package-management/reuse/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

python3Packages.buildPythonApplication rec {
pname = "reuse";
version = "0.12.1";
version = "0.13.0";

src = fetchFromGitHub {
owner = "fsfe";
repo = "reuse-tool";
rev = "v${version}";
sha256 = "0ql0krnz0fmq405r2qrm9ysm3cvmqfw14j06pny6na7qshibj78z";
sha256 = "sha256-AkOwsfTPVsOl+X0Eo1ErqWWyMBxUhnOpVwbYvJfGLTY=";
};

propagatedBuildInputs = with python3Packages; [
Expand All @@ -27,7 +27,12 @@ python3Packages.buildPythonApplication rec {
meta = with lib; {
description = "A tool for compliance with the REUSE Initiative recommendations";
homepage = "https://github.com/fsfe/reuse-tool";
license = with licenses; [ asl20 cc-by-sa-40 cc0 gpl3Plus ];
license = with licenses; [
gpl3Plus # All original source code
asl20 # Some borrowed source code
cc-by-sa-40 # Documentation
cc0 # Some configuration and data files
];
maintainers = [ maintainers.FlorianFranzen ];
};
}