nixpkgs/pkgs/development/libraries/libdynd/default.nix

41 lines
918 B
Nix
Raw Normal View History

2016-08-13 16:30:57 +00:00
{ stdenv, fetchFromGitHub, cmake }:
let version = "0.7.2"; in
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "libdynd";
inherit version;
2016-08-13 16:30:57 +00: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 16:30:57 +00:00
buildInputs = [ cmake ];
outputs = [ "out" "dev" ];
2016-08-13 16:30:57 +00:00
outputDoc = "dev";
meta = with stdenv.lib; {
description = "C++ dynamic ndarray library, with Python exposure.";
homepage = "http://libdynd.org";
2016-08-13 16:30:57 +00:00
license = licenses.bsd2;
2018-03-13 21:20:59 +00:00
platforms = platforms.linux;
2016-08-13 16:30:57 +00:00
};
}