2016-08-13 17:30:57 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake }:
|
|
|
|
|
|
|
|
let version = "0.7.2"; in
|
|
|
|
stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "libdynd";
|
|
|
|
inherit version;
|
2016-08-13 17:30:57 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libdynd";
|
|
|
|
repo = "libdynd";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0fkd5rawqni1cq51fmr76iw7ll4fmbahfwv4rglnsabbkylf73pr";
|
|
|
|
};
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DDYND_BUILD_BENCHMARKS=OFF"
|
|
|
|
];
|
|
|
|
|
2019-11-02 18:46:49 +00:00
|
|
|
# added to fix build with gcc7+
|
2019-10-30 02:23:29 +00:00
|
|
|
NIX_CFLAGS_COMPILE = builtins.toString [
|
2018-03-13 21:20:59 +00:00
|
|
|
"-Wno-error=implicit-fallthrough"
|
|
|
|
"-Wno-error=nonnull"
|
2019-01-11 06:59:59 +00:00
|
|
|
"-Wno-error=tautological-compare"
|
|
|
|
"-Wno-error=class-memaccess"
|
|
|
|
"-Wno-error=parentheses"
|
2019-11-02 18:46:49 +00:00
|
|
|
"-Wno-error=deprecated-copy"
|
2018-03-13 21:20:59 +00:00
|
|
|
];
|
|
|
|
|
2016-08-13 17:30:57 +01:00
|
|
|
buildInputs = [ cmake ];
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-08-13 17:30:57 +01:00
|
|
|
outputDoc = "dev";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "C++ dynamic ndarray library, with Python exposure.";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://libdynd.org";
|
2016-08-13 17:30:57 +01:00
|
|
|
license = licenses.bsd2;
|
2018-03-13 21:20:59 +00:00
|
|
|
platforms = platforms.linux;
|
2016-08-13 17:30:57 +01:00
|
|
|
};
|
|
|
|
}
|