1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #40596 from dtzWill/feature/dyncall-1.0

dyncall: init at 1.0
This commit is contained in:
Will Dietz 2018-05-16 10:52:29 -05:00 committed by GitHub
commit 1bbe4e9618
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -1165,6 +1165,8 @@ with pkgs;
dynamic-colors = callPackage ../tools/misc/dynamic-colors { };
dyncall = callPackage ../development/libraries/dyncall { };
earlyoom = callPackage ../os-specific/linux/earlyoom { };
EBTKS = callPackage ../development/libraries/science/biology/EBTKS { };