concurrencykit: remove in favor of duplicate libck

This commit is contained in:
Vladimír Čunát 2021-03-17 09:09:58 +01:00
parent eba8103149
commit 6ef2f00f1d
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA
4 changed files with 2 additions and 27 deletions

View file

@ -1,24 +0,0 @@
{ lib, 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 lib; {
description = "A library of safe, high-performance concurrent data structures";
homepage = "http://concurrencykit.org";
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = [ maintainers.thoughtpolice ];
};
}

View file

@ -21,6 +21,6 @@ stdenv.mkDerivation rec {
license = with licenses; [ asl20 bsd2 ];
homepage = "http://concurrencykit.org/";
platforms = platforms.unix;
maintainers = with maintainers; [ chessai ];
maintainers = with maintainers; [ chessai thoughtpolice ];
};
}

View file

@ -105,6 +105,7 @@ mapAliases ({
codimd = hedgedoc; # added 2020-11-29
compton = picom; # added 2019-12-02
compton-git = compton; # added 2019-05-20
concurrencykit = libck; # added 2021-03
conntrack_tools = conntrack-tools; # added 2018-05
cool-old-term = cool-retro-term; # added 2015-01-31
coprthr = throw "coprthr has been removed."; # added 2019-12-08

View file

@ -3266,8 +3266,6 @@ in
colordiff = callPackage ../tools/text/colordiff { };
concurrencykit = callPackage ../development/libraries/concurrencykit { };
connect = callPackage ../tools/networking/connect { };
conspy = callPackage ../os-specific/linux/conspy {};