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