nix-update: init at 0.1

This commit is contained in:
Jörg Thalheim 2020-05-21 07:52:25 +10:00 committed by zowoq
parent 3e66d4e12e
commit 36124b2861
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ lib
, buildPythonApplication
, fetchFromGitHub
, nix
, nix-prefetch
}:
buildPythonApplication rec {
pname = "nix-update";
version = "0.1";
src = fetchFromGitHub {
owner = "Mic92";
repo = pname;
rev = version;
sha256 = "0mw31n7kqfr7fskkxp58b0wprxj1pj6n1zs6ymvvl548gs5rgn2s";
};
makeWrapperArgs = [
"--prefix" "PATH" ":" (lib.makeBinPath [ nix nix-prefetch ])
];
checkPhase = ''
$out/bin/nix-update --help
'';
meta = with lib; {
description = "Swiss-knife for updating nix packages";
inherit (src.meta) homepage;
license = licenses.mit;
maintainers = with maintainers; [ mic92 zowoq ];
platforms = platforms.all;
};
}

View File

@ -25754,6 +25754,8 @@ in
nix-query-tree-viewer = callPackage ../tools/nix/nix-query-tree-viewer { };
nix-update = python3Packages.callPackage ../tools/package-management/nix-update { };
nix-update-source = callPackage ../tools/package-management/nix-update-source {};
nix-script = callPackage ../tools/nix/nix-script {};