nixpkgs/pkgs/development/libraries/concurrencykit/default.nix

25 lines
693 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "concurrencykit";
2017-03-12 03:15:29 +00:00
version = "0.6.0";
src = fetchurl {
url = "http://concurrencykit.org/releases/ck-${version}.tar.gz";
2017-03-12 03:15:29 +00:00
sha256 = "1pv21p7sjwwmbs2xblpy1lqk53r2i212yrqyjlr5dr3rlv87vqnp";
};
2017-03-12 03:15:29 +00:00
#Deleting this line causes "Unknown option --disable-static"
configurePhase = "./configure --prefix=$out";
enableParallelBuilding = true;
2017-03-12 03:15:29 +00:00
meta = with stdenv.lib; {
description = "A library of safe, high-performance concurrent data structures";
homepage = "http://concurrencykit.org";
2017-03-12 03:15:29 +00:00
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = [ maintainers.thoughtpolice ];
};
}