libndtypes: init at 0.2.0dev3
Dynamic types for data description and in-memory computations
This commit is contained in:
parent
2cf2ea1c03
commit
e2f92066a2
25
pkgs/development/libraries/libndtypes/default.nix
Normal file
25
pkgs/development/libraries/libndtypes/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libndtypes-${version}";
|
||||
version = "0.2.0dev3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "plures";
|
||||
repo = "ndtypes";
|
||||
rev = "v${version}";
|
||||
sha256 = "0dpvv13mrid8l5zkjlz18qvirz3nr0v98agx9bcvkqbiahlfgjli";
|
||||
};
|
||||
|
||||
makeFlags = [ "CONFIGURE_LDFLAGS='-shared'" ];
|
||||
|
||||
meta = {
|
||||
description = "Dynamic types for data description and in-memory computations";
|
||||
homepage = https://xnd.io/;
|
||||
license = lib.licenses.bsdOriginal;
|
||||
maintainers = with lib.maintainers; [ costrouc ];
|
||||
};
|
||||
}
|
@ -1388,6 +1388,8 @@ with pkgs;
|
||||
|
||||
lief = callPackage ../development/libraries/lief {};
|
||||
|
||||
libndtypes = callPackages ../development/libraries/libndtypes { };
|
||||
|
||||
loadwatch = callPackage ../tools/system/loadwatch { };
|
||||
|
||||
loccount = callPackage ../development/tools/misc/loccount { };
|
||||
|
Loading…
Reference in New Issue
Block a user