3
0
Fork 0
forked from mirrors/nixpkgs

lice: init at 0.4 (#42108)

* lice: init at 0.4

* lice: make changes per pSub
This commit is contained in:
Samuel W. Flint 2018-06-17 04:59:07 -05:00 committed by Pascal Wittmann
parent 9370818f0e
commit 1d8bb7e5c8
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ 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;
};
}

View file

@ -21098,6 +21098,8 @@ with pkgs;
lkproof = callPackage ../tools/typesetting/tex/lkproof { };
lice = callPackage ../tools/misc/lice {};
m33-linux = callPackage ../misc/drivers/m33-linux { };
mnemonicode = callPackage ../misc/mnemonicode { };