summary refs log tree commit diff
path: root/pkgs/tools/misc/lice/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/lice/default.nix')
-rw-r--r--pkgs/tools/misc/lice/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/misc/lice/default.nix b/pkgs/tools/misc/lice/default.nix
new file mode 100644
index 00000000000..bb0f93ba328
--- /dev/null
+++ b/pkgs/tools/misc/lice/default.nix
@@ -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;
+  };
+
+}