linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / dyncall / default.nix
blob0e3fa3ac7dc034fa636e383fc504bb83616644df
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation {
4   pname = "dyncall";
5   version = "1.1";
7   src = fetchurl {
8     url = "https://www.dyncall.org/r1.1/dyncall-1.1.tar.gz";
9     # https://www.dyncall.org/r1.1/SHA256
10     sha256 = "cf97fa3f142db832ff34235caa4d69a7d5f16716573d446b2d95069126e88795";
11   };
13   # XXX: broken tests, failures masked, lets avoid crashing a bunch for now :)
14   doCheck = false;
16   # install bits not automatically installed
17   postInstall = ''
18     # install cmake modules to make using dyncall easier
19     # This is essentially what -DINSTALL_CMAKE_MODULES=ON if using cmake build
20     # We don't use the cmake-based build since it installs different set of headers
21     # (mostly fewer headers, but installs dyncall_alloc_wx.h "instead" dyncall_alloc.h)
22     # and we'd have to patch the cmake module installation to not use CMAKE_ROOT anyway :).
23     install -D -t $out/lib/cmake ./buildsys/cmake/Modules/Find*.cmake
25     # manpages are nice, install them
26     # doing this is in the project's "ToDo", so check this when updating!
27     install -D -t $out/share/man/man3 ./*/*.3
28   '';
30   meta = with lib; {
31     description = "Highly dynamic multi-platform foreign function call interface library";
32     homepage = "https://www.dyncall.org";
33     license = licenses.isc;
34     maintainers = with maintainers; [ dtzWill ];
35   };