summary refs log tree commit diff
path: root/pkgs/development/libraries/sword
diff options
context:
space:
mode:
authorMathijs Kwik <mathijs@bluescreen303.nl>2013-12-23 11:35:35 +0100
committerMathijs Kwik <mathijs@bluescreen303.nl>2013-12-23 15:48:35 +0100
commit82131d50138c9ee00e67c066dab7313aaa51ec6d (patch)
tree0e0feec242ecdbd1aaa99c05dad1d2afd2c94d75 /pkgs/development/libraries/sword
parentaf7df9a37b2ccdb4c3c104a17baf992f929849ba (diff)
clucene_core: switch to versioning scheme to make overriding easier
Diffstat (limited to 'pkgs/development/libraries/sword')
-rw-r--r--pkgs/development/libraries/sword/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/libraries/sword/default.nix b/pkgs/development/libraries/sword/default.nix
index 3486981463f34..bd177ffc6600c 100644
--- a/pkgs/development/libraries/sword/default.nix
+++ b/pkgs/development/libraries/sword/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, pkgconfig, icu, cluceneCore, curl}:
+{stdenv, fetchurl, pkgconfig, icu, clucene_core, curl}:
 
 stdenv.mkDerivation rec {
 
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
     sha256 = "1fc71avaxkhx6kckjiflw6j02lpg569b9bzaksq49i1m87awfxmg";
   };
 
-  buildInputs = [ pkgconfig icu cluceneCore curl ];
+  buildInputs = [ pkgconfig icu clucene_core curl ];
 
   # because curl/types.h disappeared since at least curl 7.21.7
   patches = [ ./dont_include_curl_types_h.patch ];
@@ -31,4 +31,3 @@ stdenv.mkDerivation rec {
   };
 
 }
-