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 ];
+ };
}) { }
+# 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
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'],
+ license="GPL-3.0",
entry_points={'console_scripts': ['nix-pin-deps = nix_pin_deps:main']},
)