3
0
Fork 0
forked from mirrors/nixpkgs

libffi: Install headers under "$out/include".

svn path=/nixpkgs/trunk/; revision=17655
This commit is contained in:
Ludovic Courtès 2009-10-05 22:21:40 +00:00
parent 0183a14c05
commit 14dc82302c

View file

@ -9,6 +9,11 @@ stdenv.mkDerivation rec {
doCheck = true;
postInstall =
# Install headers in the right place.
'' ln -sv "$out/lib/"libffi*/include "$out/include"
'';
meta = {
description = "libffi, a foreign function call interface library";
@ -30,5 +35,7 @@ stdenv.mkDerivation rec {
homepage = http://sources.redhat.com/libffi/;
license = "http://sources.redhat.com/cgi-bin/cvsweb.cgi/~checkout~/libffi/LICENSE?rev=1.6&content-type=text/plain&cvsroot=libffi&only_with_tag=MAIN";
maintainers = [ stdenv.lib.maintainers.ludo ];
};
}