summary refs log tree commit diff
path: root/pkgs/development/libraries/libdynd/default.nix
blob: c02a6f9a5025217df01094c7b95c42df88b7e246 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ stdenv, fetchFromGitHub, cmake }:

let version = "0.7.2"; in
stdenv.mkDerivation {
  pname = "libdynd";
  inherit 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 = builtins.toString [
    "-Wno-error=implicit-fallthrough"
    "-Wno-error=nonnull"
    "-Wno-error=tautological-compare"
    "-Wno-error=class-memaccess"
    "-Wno-error=parentheses"
    "-Wno-error=deprecated-copy"
  ];

  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;
  };
}