]> git.scottworley.com Git - pinch/commitdiff
Specify license
authorScott Worley <scottworley@scottworley.com>
Thu, 24 Nov 2022 02:20:38 +0000 (18:20 -0800)
committerScott Worley <scottworley@scottworley.com>
Thu, 24 Nov 2022 02:20:38 +0000 (18:20 -0800)
Changelog
default.nix
pinch.py
setup.py

index dab8eb682c87f22ee7d20d671e42028fffdf626a..75e6be8e40472a4b50175630f154bbfae61d8cd7 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,6 @@
 ## [Unreleased]
+### Changed
+- Specify license
 
 
 ## [3.0.10] - 2022-11-23
index 7744281ae0afb0fe74fe58f1c1a7e62f1e583b66..e62e1d39ae379784beda2c1f64538f77fa826da9 100644 (file)
@@ -31,6 +31,12 @@ in pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix_2_3, git
     '';
     doCheck = true;
     checkPhase = "./test.sh";
+    meta = {
+      description = "A replacement for `nix-channel --update`";
+      homepage = "https://git.scottworley.com/pinc";
+      license = pkgs.lib.licenses.gpl3;
+      maintainers = with pkgs.lib.maintainers; [ chkno ];
+    };
   }) {
     git-cache =
       pkgs.python3Packages.git-cache or (pkgs.python3Packages.callPackage
index a66a03a5b126fd758a07242887f6090cad8fc30d..89d6f61cad23f6bcd2da6785f5cfec922ceb4f93 100644 (file)
--- a/pinch.py
+++ b/pinch.py
@@ -1,3 +1,10 @@
+# pinch: PIN CHannels - a replacement for `nix-channel --update`
+#
+# 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.
+
+
 import argparse
 import configparser
 import filecmp
index 57fc3b9187feae69789d924aedb875496bad565a..baf4f0332f9cf6dc0aa3b42d4849cc378d70fe7a 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,12 @@ from setuptools import setup
 setup(
     name='pinch',
     version='3.0.10',
+    description="Cache git content locally",
+    author="Scott Worley",
+    author_email="scottworley@scottworley.com",
+    url="https://git.scottworley.com/git-cache",
     py_modules=['pinch'],
+    license="GPL-3.0",
     entry_points={'console_scripts': ['pinch = pinch:main']},
     dependency_links=['https://scottworley.com/git/git-cache'],
 )