1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
8 url = "mirror://gnu/libffcall/libffcall-${version}.tar.gz";
9 sha256 = "sha256-6/o3+XtslPrCTs8xk/n8gpUXz4Gu6awtGRr5k9c8t0c=";
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;