Merge pull request #23784 from ndowens/ck
concurrencykit: 0.4.5 -> 0.6.0
This commit is contained in:
commit
bcc3755477
@ -2,22 +2,23 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "concurrencykit-${version}";
|
name = "concurrencykit-${version}";
|
||||||
version = "0.4.5";
|
version = "0.6.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://concurrencykit.org/releases/ck-${version}.tar.gz";
|
url = "http://concurrencykit.org/releases/ck-${version}.tar.gz";
|
||||||
sha256 = "0mh3z8ibiwidc6qvrv8bx9slgcycxwy06kfngfzfza6nihrymzl9";
|
sha256 = "1pv21p7sjwwmbs2xblpy1lqk53r2i212yrqyjlr5dr3rlv87vqnp";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#Deleting this line causes "Unknown option --disable-static"
|
||||||
|
configurePhase = "./configure --prefix=$out";
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
configurePhase = "./configure --prefix=$out";
|
meta = with stdenv.lib; {
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "A library of safe, high-performance concurrent data structures";
|
description = "A library of safe, high-performance concurrent data structures";
|
||||||
homepage = "http://concurrencykit.org";
|
homepage = http://concurrencykit.org;
|
||||||
license = stdenv.lib.licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
maintainers = [ maintainers.thoughtpolice ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user