1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "concurrencykit-${version}";
5 version = "0.6.0";
6
7 src = fetchurl {
8 url = "http://concurrencykit.org/releases/ck-${version}.tar.gz";
9 sha256 = "1pv21p7sjwwmbs2xblpy1lqk53r2i212yrqyjlr5dr3rlv87vqnp";
10 };
11
12 #Deleting this line causes "Unknown option --disable-static"
13 configurePhase = "./configure --prefix=$out";
14
15 enableParallelBuilding = true;
16
17 meta = with stdenv.lib; {
18 description = "A library of safe, high-performance concurrent data structures";
19 homepage = http://concurrencykit.org;
20 license = licenses.bsd2;
21 platforms = platforms.unix;
22 maintainers = [ maintainers.thoughtpolice ];
23 };
24}