This commit is contained in:
Aaron Bieber 2023-05-22 21:02:09 -06:00
parent 5601ed4ee4
commit 59f1162e45
No known key found for this signature in database

View File

@ -22,10 +22,7 @@
pname = "pr-status"; pname = "pr-status";
version = "v0.0.1"; version = "v0.0.1";
src = ./.; src = ./.;
buildInputs = with pkgs; [ buildInputs = with pkgs; [ makeWrapper ];
git
makeWrapper
];
propagatedBuildInputs = with pkgs.perlPackages; [ propagatedBuildInputs = with pkgs.perlPackages; [
Mojolicious Mojolicious
JSON JSON
@ -33,7 +30,9 @@
]; ];
postInstall = '' postInstall = ''
wrapProgram $out/bin/pr-status.pl --prefix PATH : ${nixpkgs.lib.makeBinPath [ pkgs.git ]} wrapProgram $out/bin/pr-status.pl --prefix PATH : ${
nixpkgs.lib.makeBinPath [ pkgs.git pkgs.perl ]
}
''; '';
outputs = [ "out" "dev" ]; outputs = [ "out" "dev" ];