d0ef8a845e
svn path=/nixpkgs/trunk/; revision=13168
32 lines
774 B
Nix
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+";
|
|
};
|
|
}
|