summary refs log tree commit diff
path: root/pkgs/development/libraries/dyncall
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-05-16 08:35:59 -0500
committerWill Dietz <w@wdtz.org>2018-05-16 10:29:40 -0500
commit65eb3ec842d0a738e1fc64cfb9f7675243f4b1fb (patch)
tree72a7a731be602808a29a8e40d3be4581b2ab63ca /pkgs/development/libraries/dyncall
parent11e908eca46f077367e52033d5021b29f6f8ad4c (diff)
downloadnixpkgs-65eb3ec842d0a738e1fc64cfb9f7675243f4b1fb.tar
nixpkgs-65eb3ec842d0a738e1fc64cfb9f7675243f4b1fb.tar.gz
nixpkgs-65eb3ec842d0a738e1fc64cfb9f7675243f4b1fb.tar.bz2
nixpkgs-65eb3ec842d0a738e1fc64cfb9f7675243f4b1fb.tar.lz
nixpkgs-65eb3ec842d0a738e1fc64cfb9f7675243f4b1fb.tar.xz
nixpkgs-65eb3ec842d0a738e1fc64cfb9f7675243f4b1fb.tar.zst
nixpkgs-65eb3ec842d0a738e1fc64cfb9f7675243f4b1fb.zip
dyncall: init at 1.0
Diffstat (limited to 'pkgs/development/libraries/dyncall')
-rw-r--r--pkgs/development/libraries/dyncall/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/libraries/dyncall/default.nix b/pkgs/development/libraries/dyncall/default.nix
new file mode 100644
index 00000000000..b60f61299f3
--- /dev/null
+++ b/pkgs/development/libraries/dyncall/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "dyncall-${version}";
+  version = "1.0";
+
+  src = fetchurl {
+    url = http://www.dyncall.org/r1.0/dyncall-1.0.tar.gz;
+    # http://www.dyncall.org/r1.0/SHA256
+    sha256 = "d1b6d9753d67dcd4d9ea0708ed4a3018fb5bfc1eca5f37537fba2bc4f90748f2";
+  };
+
+  doCheck = true;
+  checkTarget = "run-tests";
+
+  meta = with stdenv.lib; {
+    description = "Highly dynamic multi-platform foreign function call interface library";
+    homepage = http://dyncall.org;
+    license = licenses.isc;
+    maintainers = with maintainers; [ dtzWill ];
+  };
+}