]> git.scottworley.com Git - nix-pin-deps/commitdiff
Specify license
authorScott Worley <scottworley@scottworley.com>
Thu, 24 Nov 2022 03:42:43 +0000 (19:42 -0800)
committerScott Worley <scottworley@scottworley.com>
Thu, 24 Nov 2022 03:42:43 +0000 (19:42 -0800)
default.nix
nix_pin_deps.py
setup.py

index 7be4d9c69affbb793032affdc3d2a372febd6520..b3b1fa6cc684a667a74d355139b2eeb88f30e4ec 100644 (file)
@@ -10,4 +10,10 @@ pkgs.python3Packages.callPackage
     checkPhase = ''
       ./test.sh ${lib.optionalString lint "lint"}
     '';
     checkPhase = ''
       ./test.sh ${lib.optionalString lint "lint"}
     '';
+    meta = {
+      description = "GC-pin dependencies of a partially-built derivation";
+      homepage = "https://git.scottworley.com/nix-pin-deps";
+      license = pkgs.lib.licenses.gpl3;
+      maintainers = with pkgs.lib.maintainers; [ chkno ];
+    };
   }) { }
   }) { }
index 6f12df84ca468d63551afb6e8b8c7f85083a88c3..297f7c17822f5e57e64f23876a77ad78ecc3889d 100644 (file)
@@ -1,3 +1,10 @@
+# nix-pin-deps: gc-pin dependencies of a partially-built derivation
+#
+# This program is free software: you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by the
+# Free Software Foundation, version 3.
+
+
 from contextlib import contextmanager
 import json
 import os
 from contextlib import contextmanager
 import json
 import os
index e581026f50582134877adc839c2e4792c9b48e1d..d449047806553281e92d20ac49ed1c87960e1844 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,6 +3,11 @@ from setuptools import setup
 setup(
     name='nix-pin-deps',
     version='1.0.0',
 setup(
     name='nix-pin-deps',
     version='1.0.0',
+    description="gc-pin dependencies of a partially-built derivation",
+    author="Scott Worley",
+    author_email="scottworley@scottworley.com",
+    url="https://git.scottworley.com/nix-pin-deps",
     py_modules=['nix_pin_deps'],
     py_modules=['nix_pin_deps'],
+    license="GPL-3.0",
     entry_points={'console_scripts': ['nix-pin-deps = nix_pin_deps:main']},
 )
     entry_points={'console_scripts': ['nix-pin-deps = nix_pin_deps:main']},
 )