Add catdoc
svn path=/nixpkgs/trunk/; revision=21558
This commit is contained in:
parent
17a3bcd4d6
commit
d8c07cc4d6
17
pkgs/tools/text/catdoc/default.nix
Normal file
17
pkgs/tools/text/catdoc/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user