added the sword framework

svn path=/nixpkgs/trunk/; revision=24586
This commit is contained in:
Piotr Pietraszkiewicz 2010-11-03 20:36:36 +00:00
parent b247c239e5
commit f540277f97
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{stdenv, fetchurl, pkgconfig, icu, cluceneCore, curl}:
stdenv.mkDerivation rec {
version = "1.6.2";
name = "sword-${version}";
src = fetchurl {
url = "http://www.crosswire.org/ftpmirror/pub/sword/source/v1.6/${name}.tar.gz";
sha256 = "1fc71avaxkhx6kckjiflw6j02lpg569b9bzaksq49i1m87awfxmg";
};
buildInputs = [ pkgconfig icu cluceneCore curl ];
prePatch = ''
patchShebangs .;
'';
configureFlags = "--without-conf --enable-debug";
meta = {
description = "A software framework that allows research manipulation of Biblical texts";
homepage = http://www.crosswire.org/sword/;
platforms = stdenv.lib.platforms.linux;
license = "GPLv2";
};
}

View File

@ -3841,6 +3841,8 @@ let
suitesparse = callPackage ../development/libraries/suitesparse { };
sword = callPackage ../development/libraries/sword { };
t1lib = callPackage ../development/libraries/t1lib { };
taglib = callPackage ../development/libraries/taglib { };