Skip to content

Commit 6d598fc

Browse files
bobakkerfpletz
authored andcommittedMay 8, 2017
hpx: init at 1.0.0
1 parent 9943e56 commit 6d598fc

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed
 
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{ stdenv, fetchFromGitHub, boost, cmake, hwloc, gperftools, pkgconfig, python }:
2+
3+
stdenv.mkDerivation rec {
4+
name = "hpx-${version}";
5+
version = "1.0.0";
6+
7+
src = fetchFromGitHub {
8+
owner = "STEllAR-GROUP";
9+
repo = "hpx";
10+
rev = "${version}";
11+
sha256 = "0k79gw4c0v4i7ps1hw6x4m7svxbfml5xm6ly7p00dvg7z9521zsk";
12+
};
13+
14+
buildInputs = [ boost hwloc gperftools ];
15+
nativeBuildInputs = [ cmake pkgconfig python ];
16+
17+
enableParallelBuilding = true;
18+
19+
meta = {
20+
description = "C++ standard library for concurrency and parallelism";
21+
homepage = "https://github.com/STEllAR-GROUP/hpx";
22+
license = stdenv.lib.licenses.boost;
23+
platforms = stdenv.lib.platforms.linux;
24+
maintainers = with stdenv.lib.maintainers; [ bobakker ];
25+
};
26+
}

‎pkgs/top-level/all-packages.nix

+3-1
Original file line numberDiff line numberDiff line change
@@ -8012,6 +8012,8 @@ with pkgs;
80128012

80138013
hound = callPackage ../development/tools/misc/hound { };
80148014

8015+
hpx = callPackage ../development/libraries/hpx { };
8016+
80158017
hspell = callPackage ../development/libraries/hspell { };
80168018

80178019
hspellDicts = callPackage ../development/libraries/hspell/dicts.nix { };
@@ -17011,7 +17013,7 @@ with pkgs;
1701117013
quake3pointrelease = callPackage ../games/quake3/content/pointrelease.nix { };
1701217014

1701317015
quakespasm = callPackage ../games/quakespasm { };
17014-
17016+
1701517017
ioquake3 = callPackage ../games/quake3/ioquake { };
1701617018

1701717019
quantumminigolf = callPackage ../games/quantumminigolf {};

0 commit comments

Comments
 (0)
Please sign in to comment.