libgumath: init at unstable-2018-11-27
This commit is contained in:
parent
ce019e775f
commit
eb36c3f28c
34
pkgs/development/libraries/libgumath/default.nix
Normal file
34
pkgs/development/libraries/libgumath/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, libndtypes
|
||||
, libxnd
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libgumath-${version}";
|
||||
version = "unstable-2018-11-27";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "plures";
|
||||
repo = "gumath";
|
||||
rev = "5a9d27883b40432246d6a93cd6133157267fd166";
|
||||
sha256 = "0w2qzp7anxd1wzkvv5r2pdkkpgrnqzgrq47lrvpqc1i1wqzcwf0w";
|
||||
};
|
||||
|
||||
buildInputs = [ libndtypes libxnd ];
|
||||
|
||||
# Override linker with cc (symlink to either gcc or clang)
|
||||
# Library expects to use cc for linking
|
||||
configureFlags = [
|
||||
"LD=${stdenv.cc.targetPrefix}cc"
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Library supporting function dispatch on general data containers. C base and Python wrapper";
|
||||
homepage = https://xnd.io/;
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
@ -3964,6 +3964,8 @@ in
|
||||
|
||||
libhandy = callPackage ../development/libraries/libhandy { };
|
||||
|
||||
libgumath = callPackage ../development/libraries/libgumath { };
|
||||
|
||||
libipfix = callPackage ../development/libraries/libipfix { };
|
||||
|
||||
libircclient = callPackage ../development/libraries/libircclient { };
|
||||
|
Loading…
Reference in New Issue
Block a user