nixpkgs/pkgs/tools/text/catdoc/default.nix

21 lines
519 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2017-03-01 01:10:08 +00:00
name = "catdoc-${version}";
version = "0.95";
src = fetchurl {
url = "http://ftp.wagner.pp.ru/pub/catdoc/${name}.tar.gz";
2017-03-01 01:10:08 +00:00
sha256 = "514a84180352b6bf367c1d2499819dfa82b60d8c45777432fa643a5ed7d80796";
};
configureFlags = "--disable-wordview";
meta = with stdenv.lib; {
2014-06-22 20:45:53 +00:00
description = "MS-Word/Excel/PowerPoint to text converter";
platforms = platforms.all;
2017-03-01 01:10:08 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ ndowens ];
};
}