Add catdoc

svn path=/nixpkgs/trunk/; revision=21558
This commit is contained in:
Yury G. Kudryashov 2010-05-03 03:45:40 +00:00
parent 17a3bcd4d6
commit d8c07cc4d6
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,17 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "catdoc-0.94.2";
src = fetchurl {
url = "http://ftp.wagner.pp.ru/pub/catdoc/${name}.tar.gz";
sha256 = "0qnk8fw3wc40qa34yqz51g0knif2jd78a4717nvd3rb46q88pj83";
};
configureFlags = "--disable-wordview";
meta = with stdenv.lib; {
platforms = all;
license = "GPL2";
maintainers = [ urkud ];
};
}

View File

@ -416,6 +416,10 @@ let
inherit libuuid zlib acl;
};
catdoc = import ../tools/text/catdoc {
inherit fetchurl stdenv;
};
eggdrop = import ../tools/networking/eggdrop {
inherit fetchurl stdenv tcl;
};