36 lines
755 B
Nix
36 lines
755 B
Nix
{ stdenv, fetchFromGitHub, cmake }:
|
|
|
|
let version = "0.7.2"; in
|
|
stdenv.mkDerivation {
|
|
name = "libdynd-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libdynd";
|
|
repo = "libdynd";
|
|
rev = "v${version}";
|
|
sha256 = "0fkd5rawqni1cq51fmr76iw7ll4fmbahfwv4rglnsabbkylf73pr";
|
|
};
|
|
|
|
cmakeFlags = [
|
|
"-DDYND_BUILD_BENCHMARKS=OFF"
|
|
];
|
|
|
|
# added to fix build with gcc7
|
|
NIX_CFLAGS_COMPILE = [
|
|
"-Wno-error=implicit-fallthrough"
|
|
"-Wno-error=nonnull"
|
|
];
|
|
|
|
buildInputs = [ cmake ];
|
|
|
|
outputs = [ "out" "dev" ];
|
|
outputDoc = "dev";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "C++ dynamic ndarray library, with Python exposure.";
|
|
homepage = http://libdynd.org;
|
|
license = licenses.bsd2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|