
This reverts commit 65a333600d5c88a98d674f637d092807cfc12253. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
51 lines
1.0 KiB
Nix
51 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libdynd";
|
|
version = "0.7.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libdynd";
|
|
repo = "libdynd";
|
|
rev = "v${version}";
|
|
sha256 = "0fkd5rawqni1cq51fmr76iw7ll4fmbahfwv4rglnsabbkylf73pr";
|
|
};
|
|
|
|
cmakeFlags = [
|
|
"-DDYND_BUILD_BENCHMARKS=OFF"
|
|
];
|
|
|
|
env.NIX_CFLAGS_COMPILE = builtins.toString [
|
|
# added to fix build with gcc7+
|
|
"-Wno-error=implicit-fallthrough"
|
|
"-Wno-error=nonnull"
|
|
"-Wno-error=tautological-compare"
|
|
"-Wno-error=class-memaccess"
|
|
"-Wno-error=parentheses"
|
|
"-Wno-error=deprecated-copy"
|
|
# Needed with GCC 12
|
|
"-Wno-error=deprecated-declarations"
|
|
"-Wno-error=maybe-uninitialized"
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
outputDoc = "dev";
|
|
|
|
meta = with lib; {
|
|
description = "C++ dynamic ndarray library, with Python exposure";
|
|
homepage = "http://libdynd.org";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|