Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
33 lines
715 B
Nix
33 lines
715 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, mpi
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libcircle";
|
|
version = "0.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hpc";
|
|
repo = "libcircle";
|
|
rev = "v${version}";
|
|
hash = "sha256-EfnoNL6wo6qQES6XzMtpTpYcsJ8V2gy32i26wiTldH0=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
propagatedBuildInputs = [ mpi ];
|
|
|
|
meta = with lib; {
|
|
description = "API for distributing embarrassingly parallel workloads using self-stabilization";
|
|
homepage = "http://hpc.github.io/libcircle/";
|
|
platforms = platforms.linux;
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.markuskowa ];
|
|
};
|
|
}
|