Added wvVare - tools for converting Microsoft Word formats to usable ones.
svn path=/nixpkgs/trunk/; revision=9152
This commit is contained in:
parent
cf9bc5c79c
commit
8fd03a4dac
2 changed files with 25 additions and 0 deletions
19
pkgs/tools/misc/wv/default.nix
Normal file
19
pkgs/tools/misc/wv/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
args:
|
||||
args.stdenv.mkDerivation {
|
||||
name = "wv-1.2.4";
|
||||
|
||||
src = args.
|
||||
fetchurl {
|
||||
url = http://dfn.dl.sourceforge.net/sourceforge/wvware/wv-1.2.4.tar.gz;
|
||||
sha256 = "1mn2ax6qjy3pvixlnvbkn6ymy6y4l2wxrr4brjaczm121s8hjcb7";
|
||||
};
|
||||
|
||||
buildInputs =(with args; [zlib imagemagick libpng glib
|
||||
pkgconfig libgsf libxml2]);
|
||||
|
||||
meta = {
|
||||
description = "
|
||||
Convertor from Microsoft Word formats to human-editable ones.
|
||||
";
|
||||
};
|
||||
}
|
|
@ -626,6 +626,12 @@ rec {
|
|||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
wv = import ../tools/misc/wv {
|
||||
inherit fetchurl stdenv libpng zlib imagemagick
|
||||
pkgconfig libgsf libxml2;
|
||||
inherit (gtkLibs) glib;
|
||||
};
|
||||
|
||||
x11_ssh_askpass = import ../tools/networking/x11-ssh-askpass {
|
||||
inherit fetchurl stdenv x11;
|
||||
inherit (xorg) imake;
|
||||
|
|
Loading…
Reference in a new issue