renamed current xapian/xapianBindings to xapian10/xapianBindings10

svn path=/nixpkgs/trunk/; revision=26979
This commit is contained in:
Florian Friesdorf 2011-04-26 20:57:11 +00:00
parent db215a1d94
commit 1e3d07eeea
3 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
{ composableDerivation, fetchurl, xapian, pkgconfig { stdenv, composableDerivation, fetchurl, xapian10, pkgconfig
, python ? null, php ? null, ruby ? null }: , python ? null, php ? null, ruby ? null }:
let inherit (composableDerivation) wwf; in let inherit (composableDerivation) wwf; in
@ -12,7 +12,7 @@ composableDerivation.composableDerivation {} rec {
sha256 = "6028123c3cd9bfc380b672b89f5420f7d5c063fc3511dee4dd5d34033ccb6911"; sha256 = "6028123c3cd9bfc380b672b89f5420f7d5c063fc3511dee4dd5d34033ccb6911";
}; };
buildInputs = [ xapian pkgconfig ]; buildInputs = [ xapian10 pkgconfig ];
# most interpreters aren't tested yet.. (see python for example how to do it) # most interpreters aren't tested yet.. (see python for example how to do it)
flags = flags =
@ -67,7 +67,7 @@ composableDerivation.composableDerivation {} rec {
meta = { meta = {
description = "Bindings for the Xapian library"; description = "Bindings for the Xapian library";
homepage = xapian.meta.homepage; homepage = xapian10.meta.homepage;
license = "GPL"; license = "GPL";
maintainers = [ stdenv.lib.maintainers.chaoflow ]; maintainers = [ stdenv.lib.maintainers.chaoflow ];
}; };

View File

@ -4316,9 +4316,9 @@ let
x264 = callPackage ../development/libraries/x264 { }; x264 = callPackage ../development/libraries/x264 { };
xapian = callPackage ../development/libraries/xapian { }; xapian10 = callPackage ../development/libraries/xapian/1.0.x.nix { };
xapianBindings = callPackage ../development/libraries/xapian/bindings { # TODO perl php Java, tcl, C#, python xapianBindings10 = callPackage ../development/libraries/xapian/bindings/1.0.x.nix { # TODO perl php Java, tcl, C#, python
}; };
Xaw3d = callPackage ../development/libraries/Xaw3d { }; Xaw3d = callPackage ../development/libraries/Xaw3d { };