summary refs log tree commit diff
path: root/pkgs/development/libraries/stxxl
diff options
context:
space:
mode:
authorcodyopel <codyopel@gmail.com>2015-05-07 06:04:20 -0400
committercodyopel <codyopel@gmail.com>2015-05-07 06:04:20 -0400
commite9b093bc9851a05eac2e1a0a9340c0c3a8d4e605 (patch)
tree4acd2adba3eefb950ee8eef8600fb003b73f8cbe /pkgs/development/libraries/stxxl
parent874fa4d8a35d570f11e622d55ba3a60a6ac9e660 (diff)
downloadnixpkgs-e9b093bc9851a05eac2e1a0a9340c0c3a8d4e605.tar
nixpkgs-e9b093bc9851a05eac2e1a0a9340c0c3a8d4e605.tar.gz
nixpkgs-e9b093bc9851a05eac2e1a0a9340c0c3a8d4e605.tar.bz2
nixpkgs-e9b093bc9851a05eac2e1a0a9340c0c3a8d4e605.tar.lz
nixpkgs-e9b093bc9851a05eac2e1a0a9340c0c3a8d4e605.tar.xz
nixpkgs-e9b093bc9851a05eac2e1a0a9340c0c3a8d4e605.tar.zst
nixpkgs-e9b093bc9851a05eac2e1a0a9340c0c3a8d4e605.zip
stxxl: refactor
Diffstat (limited to 'pkgs/development/libraries/stxxl')
-rw-r--r--pkgs/development/libraries/stxxl/default.nix30
1 files changed, 22 insertions, 8 deletions
diff --git a/pkgs/development/libraries/stxxl/default.nix b/pkgs/development/libraries/stxxl/default.nix
index 23590f17ca8..9fb25aa36e0 100644
--- a/pkgs/development/libraries/stxxl/default.nix
+++ b/pkgs/development/libraries/stxxl/default.nix
@@ -1,24 +1,38 @@
-{stdenv, fetchurl, cmake, parallel ? true }:
+{ stdenv, fetchurl, cmake
+, parallel ? true
+}:
+
+let
+  mkFlag = optset: flag: if optset then "-D${flag}=ON" else "-D${flag}=OFF";
+in
 
 stdenv.mkDerivation rec {
-  name = "stxxl-1.4.1";
+  name = "stxxl-${version}";
+  version = "1.4.1";
 
   src = fetchurl {
-    url = "https://github.com/stxxl/stxxl/archive/1.4.1.tar.gz";
+    url = "https://github.com/stxxl/stxxl/archive/${version}.tar.gz";
     sha256 = "54006a5fccd1435abc2f3ec201997a4d7dacddb984d2717f62191798e5372f6c";
   };
 
-  buildInputs = [ cmake ];
+  nativeBuildInputs = [ cmake ];
 
-  cmakeFlags = let parallel_str = if parallel then "ON" else "OFF"; in "-DUSE_GNU_PARALLEL=${parallel_str}";
+  cmakeFlags = [
+    "-DBUILD_SHARED_LIBS=ON"
+    "-DBUILD_STATIC_LIBS=OFF"
+    "-DCMAKE_BUILD_TYPE=Release"
+    (mkFlag parallel "USE_GNU_PARALLEL")
+  ];
 
   passthru = {
     inherit parallel;
   };
 
-  meta = {
-    homepage = https://github.com/stxxl/stxxl;
+  meta = with stdenv.lib; {
     description = "An implementation of the C++ standard template library STL for external memory (out-of-core) computations";
-    license = stdenv.lib.licenses.boost;
+    homepage = https://github.com/stxxl/stxxl;
+    license = licenses.boost;
+    maintainers = with maintainers; [ ];
+    platforms = platforms.all;
   };
 }