1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
8 url = "mirror://gnu/libffcall/libffcall-${version}.tar.gz";
9 sha256 = "0iwcad6w78jp84vd6xaz5fwqm84n3cb42bdf5m5cj5xzpa5zp4d0";
12 enableParallelBuilding = false;
14 outputs = [ "dev" "out" "doc" "man" ];
17 mkdir -p $doc/share/doc/libffcall
18 mv $out/share/html $doc/share/doc/libffcall
23 description = "Foreign function call library";
24 homepage = "https://www.gnu.org/software/libffcall/";
25 license = licenses.gpl2Plus;
26 platforms = platforms.unix;