nixpkgs/pkgs/tools/misc/lice/default.nix
Samuel W. Flint 1d8bb7e5c8 lice: init at 0.4 (#42108)
* lice: init at 0.4

* lice: make changes per pSub
2018-06-17 11:59:07 +02:00

25 lines
595 B
Nix

{ stdenv, fetchFromGitHub, python3Packages }:
python3Packages.buildPythonPackage rec {
version = "0.4";
name = "lice-${version}";
src = fetchFromGitHub {
owner = "licenses";
repo = "lice";
rev = version;
sha256 = "0yxf70fi8ds3hmwjply2815k466r99k8n22r0ppfhwjvp3rn60qx";
fetchSubmodules = true;
};
meta = with stdenv.lib; {
description = "Print license based on selection and user options.";
homepage = https://github.com/licenses/lice;
license = licenses.bsd3;
maintainers = with maintainers; [ swflint ];
platforms = platforms.unix;
};
}