summary refs log tree commit diff
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-03-11 21:15:29 -0600
committerndowens <ndowens04@gmail.com>2017-03-11 21:15:29 -0600
commit5f03cf8f940f55e129be192220cd31d5222e9109 (patch)
treeb7135e3056476b3b4814c7b6925dda957cc800f8
parent3ea16e98b4722a86ccc38939100390b7abdfe72e (diff)
downloadnixpkgs-5f03cf8f940f55e129be192220cd31d5222e9109.tar
nixpkgs-5f03cf8f940f55e129be192220cd31d5222e9109.tar.gz
nixpkgs-5f03cf8f940f55e129be192220cd31d5222e9109.tar.bz2
nixpkgs-5f03cf8f940f55e129be192220cd31d5222e9109.tar.lz
nixpkgs-5f03cf8f940f55e129be192220cd31d5222e9109.tar.xz
nixpkgs-5f03cf8f940f55e129be192220cd31d5222e9109.tar.zst
nixpkgs-5f03cf8f940f55e129be192220cd31d5222e9109.zip
concurrencykit: 0.4.5 -> 0.6.0
-rw-r--r--pkgs/development/libraries/concurrencykit/default.nix19
1 files changed, 10 insertions, 9 deletions
diff --git a/pkgs/development/libraries/concurrencykit/default.nix b/pkgs/development/libraries/concurrencykit/default.nix
index 3fad256e572..29ce216cadf 100644
--- a/pkgs/development/libraries/concurrencykit/default.nix
+++ b/pkgs/development/libraries/concurrencykit/default.nix
@@ -2,22 +2,23 @@
 
 stdenv.mkDerivation rec {
   name    = "concurrencykit-${version}";
-  version = "0.4.5";
+  version = "0.6.0";
 
   src = fetchurl {
     url    = "http://concurrencykit.org/releases/ck-${version}.tar.gz";
-    sha256 = "0mh3z8ibiwidc6qvrv8bx9slgcycxwy06kfngfzfza6nihrymzl9";
+    sha256 = "1pv21p7sjwwmbs2xblpy1lqk53r2i212yrqyjlr5dr3rlv87vqnp";
   };
+  
+  #Deleting this line causes "Unknown option --disable-static"
+  configurePhase = "./configure --prefix=$out";
 
   enableParallelBuilding = true;
 
-  configurePhase = "./configure --prefix=$out";
-
-  meta = {
+  meta = with stdenv.lib; {
     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 ];
+    homepage    = http://concurrencykit.org;
+    license     = licenses.bsd2;
+    platforms   = platforms.unix;
+    maintainers = [ maintainers.thoughtpolice ];
   };
 }