nixpkgs-suyu/pkgs/tools/package-management/nix-update/default.nix

37 lines
773 B
Nix
Raw Normal View History

2020-05-20 23:52:25 +02:00
{ lib
, buildPythonApplication
, fetchFromGitHub
2021-05-21 15:23:52 +02:00
, nixUnstable
2020-05-20 23:52:25 +02:00
, nix-prefetch
, nixpkgs-fmt
, nixpkgs-review
2020-05-20 23:52:25 +02:00
}:
buildPythonApplication rec {
pname = "nix-update";
version = "0.4.0";
2020-05-20 23:52:25 +02:00
src = fetchFromGitHub {
owner = "Mic92";
repo = pname;
rev = version;
sha256 = "sha256-n3YuNypKFaBtO5Fhf7Z3Wgh0+WH5bQWR0W0uHCYKtuY=";
2020-05-20 23:52:25 +02:00
};
makeWrapperArgs = [
2021-05-21 15:23:52 +02:00
"--prefix" "PATH" ":" (lib.makeBinPath [ nixUnstable nix-prefetch nixpkgs-fmt nixpkgs-review ])
2020-05-20 23:52:25 +02:00
];
checkPhase = ''
$out/bin/nix-update --help >/dev/null
2020-05-20 23:52:25 +02:00
'';
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;
};
}