concurrencykit: remove in favor of duplicate libck
This commit is contained in:
parent
eba8103149
commit
6ef2f00f1d
4 changed files with 2 additions and 27 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue