2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2014-04-01 02:48:58 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "concurrencykit";
|
2017-03-12 03:15:29 +00:00
|
|
|
version = "0.6.0";
|
2014-04-01 02:48:58 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://concurrencykit.org/releases/ck-${version}.tar.gz";
|
2017-03-12 03:15:29 +00:00
|
|
|
sha256 = "1pv21p7sjwwmbs2xblpy1lqk53r2i212yrqyjlr5dr3rlv87vqnp";
|
2014-04-01 02:48:58 +01:00
|
|
|
};
|
2021-01-19 21:20:11 +00:00
|
|
|
|
2017-03-12 03:15:29 +00:00
|
|
|
#Deleting this line causes "Unknown option --disable-static"
|
|
|
|
configurePhase = "./configure --prefix=$out";
|
2014-04-01 02:48:58 +01:00
|
|
|
|
2014-08-20 07:37:17 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2014-04-01 02:48:58 +01:00
|
|
|
description = "A library of safe, high-performance concurrent data structures";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://concurrencykit.org";
|
2017-03-12 03:15:29 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.thoughtpolice ];
|
2014-04-01 02:48:58 +01:00
|
|
|
};
|
|
|
|
}
|