python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libffcall / default.nix
blob30e5aa0cfa9104944f210852da14f4a2f4c2094c
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "libffcall";
5   version = "2.2";
7   src = fetchurl {
8     url = "mirror://gnu/libffcall/libffcall-${version}.tar.gz";
9     sha256 = "sha256-6/o3+XtslPrCTs8xk/n8gpUXz4Gu6awtGRr5k9c8t0c=";
10   };
12   enableParallelBuilding = false;
14   outputs = [ "dev" "out" "doc" "man" ];
16   postInstall = ''
17     mkdir -p $doc/share/doc/libffcall
18     mv $out/share/html $doc/share/doc/libffcall
19     rm -rf $out/share
20   '';
22   meta = with lib; {
23     description = "Foreign function call library";
24     homepage = "https://www.gnu.org/software/libffcall/";
25     license = licenses.gpl2Plus;
26     platforms = platforms.unix;
27   };