summary refs log tree commit diff
path: root/pkgs/development/libraries/dyncall/default.nix
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-05-16 14:06:07 -0500
committerWill Dietz <w@wdtz.org>2018-05-16 16:07:06 -0500
commitc8996506e136cc8cbe4131d2514b801ddca1a3b1 (patch)
tree49daafa0c962a86c3cddd77a2ea3e405df2bfe91 /pkgs/development/libraries/dyncall/default.nix
parent136f1c470665a9328bb4120f3a4d9af774dadb2d (diff)
downloadnixpkgs-c8996506e136cc8cbe4131d2514b801ddca1a3b1.tar
nixpkgs-c8996506e136cc8cbe4131d2514b801ddca1a3b1.tar.gz
nixpkgs-c8996506e136cc8cbe4131d2514b801ddca1a3b1.tar.bz2
nixpkgs-c8996506e136cc8cbe4131d2514b801ddca1a3b1.tar.lz
nixpkgs-c8996506e136cc8cbe4131d2514b801ddca1a3b1.tar.xz
nixpkgs-c8996506e136cc8cbe4131d2514b801ddca1a3b1.tar.zst
nixpkgs-c8996506e136cc8cbe4131d2514b801ddca1a3b1.zip
dyncall: install cmake modules, man pages, use upstream's preferred URL
Diffstat (limited to 'pkgs/development/libraries/dyncall/default.nix')
-rw-r--r--pkgs/development/libraries/dyncall/default.nix20
1 files changed, 17 insertions, 3 deletions
diff --git a/pkgs/development/libraries/dyncall/default.nix b/pkgs/development/libraries/dyncall/default.nix
index b60f61299f3..704f5c51c9c 100644
--- a/pkgs/development/libraries/dyncall/default.nix
+++ b/pkgs/development/libraries/dyncall/default.nix
@@ -10,12 +10,26 @@ stdenv.mkDerivation rec {
     sha256 = "d1b6d9753d67dcd4d9ea0708ed4a3018fb5bfc1eca5f37537fba2bc4f90748f2";
   };
 
-  doCheck = true;
-  checkTarget = "run-tests";
+  # XXX: broken tests, failures masked, lets avoid crashing a bunch for now :)
+  doCheck = false;
+
+  # install bits not automatically installed
+  postInstall = ''
+    # install cmake modules to make using dyncall easier
+    # This is essentially what -DINSTALL_CMAKE_MODULES=ON if using cmake build
+    # We don't use the cmake-based build since it installs different set of headers
+    # (mostly fewer headers, but installs dyncall_alloc_wx.h "instead" dyncall_alloc.h)
+    # and we'd have to patch the cmake module installation to not use CMAKE_ROOT anyway :).
+    install -D -t $out/lib/cmake ./buildsys/cmake/Modules/Find*.cmake
+
+    # manpages are nice, install them
+    # doing this is in the project's "ToDo", so check this when updating!
+    install -D -t $out/share/man/man3 ./*/*.3
+  '';
 
   meta = with stdenv.lib; {
     description = "Highly dynamic multi-platform foreign function call interface library";
-    homepage = http://dyncall.org;
+    homepage = http://www.dyncall.org;
     license = licenses.isc;
     maintainers = with maintainers; [ dtzWill ];
   };