Add ebook-tools-0.1.1

svn path=/nixpkgs/trunk/; revision=23189
This commit is contained in:
Yury G. Kudryashov 2010-08-16 12:40:03 +00:00
parent 0ee0fb9387
commit f9a218b691
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, fetchurl, cmake, libxml2, libzip }:
let
pn = "ebook-tools";
in
stdenv.mkDerivation rec {
name = "${pn}-0.1.1";
src = fetchurl {
url = "mirror://sf/${pn}/${name}.tar.gz";
sha256 = "07flqm0c252jklggjmg998qzyvwlw67c3db2jbg734figngrjh79";
};
buildInputs = [ cmake libxml2 libzip ];
meta = {
homepage = "http://${pn}.sourceforge.net";
description = "Tools and libs for dealing with various ebook file formats";
maintainers = [ stdenv.lib.maintainers.urkud ];
platforms = stdenv.lib.platforms.all;
};
}

View File

@ -548,6 +548,8 @@ let
e2fsprogs = callPackage ../tools/filesystems/e2fsprogs { };
ebook_tools = callPackage ../tools/text/ebook-tools { };
ecryptfs = callPackage ../tools/security/ecryptfs { };
enblendenfuse = callPackage ../tools/graphics/enblend-enfuse { };