depot/third_party/nixpkgs/pkgs/development/libraries/concurrencykit/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

24 lines
695 B
Nix

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