diff --git a/flake.nix b/flake.nix index 85946ad..829151c 100644 --- a/flake.nix +++ b/flake.nix @@ -24,6 +24,7 @@ src = ./.; buildInputs = with pkgs; [ git + makeWrapper ]; propagatedBuildInputs = with pkgs.perlPackages; [ Mojolicious @@ -31,6 +32,10 @@ Git ]; + postInstall = '' + wrapProgram $out/bin/pr-status.pl --prefix PATH : ${nixpkgs.lib.makeBinPath [ pkgs.git ]} + ''; + outputs = [ "out" "dev" ]; }; });