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

38 lines
887 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchurl, cmake
2015-05-07 10:04:20 +00:00
, parallel ? true
}:
let
mkFlag = optset: flag: if optset then "-D${flag}=ON" else "-D${flag}=OFF";
in
stdenv.mkDerivation rec {
pname = "stxxl";
2015-05-07 10:04:20 +00:00
version = "1.4.1";
src = fetchurl {
2015-05-07 10:04:20 +00:00
url = "https://github.com/stxxl/stxxl/archive/${version}.tar.gz";
sha256 = "54006a5fccd1435abc2f3ec201997a4d7dacddb984d2717f62191798e5372f6c";
};
2015-05-07 10:04:20 +00:00
nativeBuildInputs = [ cmake ];
2015-05-07 10:04:20 +00:00
cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
"-DBUILD_STATIC_LIBS=OFF"
(mkFlag parallel "USE_GNU_PARALLEL")
2015-05-07 10:04:20 +00:00
];
passthru = {
inherit parallel;
};
meta = with lib; {
2015-04-28 08:54:58 +00:00
description = "An implementation of the C++ standard template library STL for external memory (out-of-core) computations";
homepage = "https://github.com/stxxl/stxxl";
2015-05-07 10:04:20 +00:00
license = licenses.boost;
maintainers = with maintainers; [ ];
platforms = platforms.all;
};
}