mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
lice: init at 0.4 (#42108)
* lice: init at 0.4 * lice: make changes per pSub
This commit is contained in:
parent
9370818f0e
commit
1d8bb7e5c8
24
pkgs/tools/misc/lice/default.nix
Normal file
24
pkgs/tools/misc/lice/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -21098,6 +21098,8 @@ with pkgs;
|
|||||||
|
|
||||||
lkproof = callPackage ../tools/typesetting/tex/lkproof { };
|
lkproof = callPackage ../tools/typesetting/tex/lkproof { };
|
||||||
|
|
||||||
|
lice = callPackage ../tools/misc/lice {};
|
||||||
|
|
||||||
m33-linux = callPackage ../misc/drivers/m33-linux { };
|
m33-linux = callPackage ../misc/drivers/m33-linux { };
|
||||||
|
|
||||||
mnemonicode = callPackage ../misc/mnemonicode { };
|
mnemonicode = callPackage ../misc/mnemonicode { };
|
||||||
|
Loading…
Reference in New Issue
Block a user