c556a6ea46
function, so obsolete it. svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
25 lines
475 B
Nix
25 lines
475 B
Nix
{ fetchurl, stdenv }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "unifdef-1.0";
|
|
|
|
src = fetchurl {
|
|
url = http://www.cs.cmu.edu/~ajw/public/dist/unifdef-1.0.tar.gz;
|
|
sha256 = "1bcxq7qgf6r98m6l277fx6s0gn9sr4vn7f3s0r5mwx79waqk0k6i";
|
|
};
|
|
|
|
buildPhase = ''
|
|
make unifdef
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp unifdef $out/bin
|
|
'';
|
|
|
|
meta = {
|
|
description = "useful for removing #ifdef'ed lines from a file while otherwise leaving the file alone";
|
|
|
|
};
|
|
}
|