lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #125402 from Pamplemousse/ptags

authored by

Sandro and committed by
GitHub
50aeda31 a7e18f39

+10 -1
+10 -1
pkgs/development/tools/misc/ptags/default.nix
··· 1 1 { fetchFromGitHub 2 2 , cargo 3 + , ctags 3 4 , lib 5 + , makeWrapper 4 6 , rustPlatform 5 - 6 7 }: 7 8 8 9 rustPlatform.buildRustPackage rec { ··· 17 18 }; 18 19 19 20 cargoSha256 = "1pz5hvn1iq26i8c2cmqavhnri8h0sn40khrxvcdkj9q47nsj5wcx"; 21 + 22 + nativeBuildInputs = [ makeWrapper ]; 23 + 24 + postInstall = '' 25 + # `ctags` must be accessible in `PATH` for `ptags` to work. 26 + wrapProgram "$out/bin/ptags" \ 27 + --prefix PATH : "${lib.makeBinPath [ ctags ]}" 28 + ''; 20 29 21 30 # Sanity check. 22 31 checkPhase = ''