Merge pull request #40596 from dtzWill/feature/dyncall-1.0
dyncall: init at 1.0
This commit is contained in:
commit
1bbe4e9618
22
pkgs/development/libraries/dyncall/default.nix
Normal file
22
pkgs/development/libraries/dyncall/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1165,6 +1165,8 @@ with pkgs;
|
|||||||
|
|
||||||
dynamic-colors = callPackage ../tools/misc/dynamic-colors { };
|
dynamic-colors = callPackage ../tools/misc/dynamic-colors { };
|
||||||
|
|
||||||
|
dyncall = callPackage ../development/libraries/dyncall { };
|
||||||
|
|
||||||
earlyoom = callPackage ../os-specific/linux/earlyoom { };
|
earlyoom = callPackage ../os-specific/linux/earlyoom { };
|
||||||
|
|
||||||
EBTKS = callPackage ../development/libraries/science/biology/EBTKS { };
|
EBTKS = callPackage ../development/libraries/science/biology/EBTKS { };
|
||||||
|
Loading…
Reference in New Issue
Block a user