Commit e068478b authored by Markus Kowalewski's avatar Markus Kowalewski
Browse files

libcircle: init at 0.3

parent 55a71be4
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, pkg-config
, mpi
, lwgrp
}:

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 ];
  };
}