mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pstree: fix direct reference to gcc
This commit is contained in:
parent
609003f978
commit
7e045d412a
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
unpackPhase = "unpackFile \$src; sourceRoot=.";
|
||||
|
||||
buildPhase = "pwd; gcc -o pstree pstree.c";
|
||||
buildPhase = "pwd; $CC -o pstree pstree.c";
|
||||
installPhase = "mkdir -p \$out/bin; cp pstree \$out/bin";
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue