at 16.09-beta 23 lines 659 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "concurrencykit-${version}"; 5 version = "0.4.5"; 6 7 src = fetchurl { 8 url = "http://concurrencykit.org/releases/ck-${version}.tar.gz"; 9 sha256 = "0mh3z8ibiwidc6qvrv8bx9slgcycxwy06kfngfzfza6nihrymzl9"; 10 }; 11 12 enableParallelBuilding = true; 13 14 configurePhase = "./configure --prefix=$out"; 15 16 meta = { 17 description = "A library of safe, high-performance concurrent data structures"; 18 homepage = "http://concurrencykit.org"; 19 license = stdenv.lib.licenses.bsd2; 20 platforms = stdenv.lib.platforms.unix; 21 maintainers = [ stdenv.lib.maintainers.thoughtpolice ]; 22 }; 23}