mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Merge branch 'concurrencykit' of git://github.com/thoughtpolice/nixpkgs
concurrencykit: version 0.4.1
This commit is contained in:
commit
304fd16d95
2 changed files with 21 additions and 0 deletions
19
pkgs/development/libraries/concurrencykit/default.nix
Normal file
19
pkgs/development/libraries/concurrencykit/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "concurrencykit-${version}";
|
||||
version = "0.4.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://concurrencykit.org/releases/ck-${version}.tar.gz";
|
||||
sha256 = "1gi5gpkxvbb6vkhjm9kab7dz1av2i11f1pggxp001rqq2mi3i6aq";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "A library of safe, high-performance concurrent data structures";
|
||||
homepage = "http://concurrencykit.org";
|
||||
license = stdenv.lib.licenses.bsd2;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
||||
};
|
||||
}
|
|
@ -711,6 +711,8 @@ let
|
|||
|
||||
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