nixpkgs/pkgs/development/compilers/tinycc/default.nix
Ludovic Courtès d0ef8a845e Add TinyCC (TCC), a small, fast, and embeddable C compiler and interpreter.
svn path=/nixpkgs/trunk/; revision=13168
2008-10-31 16:52:44 +00:00

32 lines
774 B
Nix

{ stdenv, fetchurl, perl, texinfo }:
let version = "0.9.24"; in
stdenv.mkDerivation {
name = "tinycc-${version}";
src = fetchurl {
url = "mirror://savannah/tinycc/tcc-${version}.tar.bz2";
sha256 = "0yafz627ky0lhppa6g1mfmisnis745m39l15aixmmv5n383x9bi7";
};
buildInputs = [ perl texinfo ];
patchPhase = ''
substituteInPlace "texi2pod.pl" \
--replace "/usr/bin/perl" "${perl}/bin/perl"
'';
postInstall = ''
makeinfo --force tcc-doc.texi || true
ensureDir "$out/share/info"
mv tcc-doc.info* "$out/share/info"
'';
meta = {
description = "TinyCC, a small, fast, and embeddable C compiler and interpreter";
homepage = http://www.tinycc.org/;
license = "LGPLv2+";
};
}