nixpkgs/pkgs/tools/misc/wv/default.nix

24 lines
673 B
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, imagemagick, libpng, glib, pkgconfig, libgsf
, libxml2, bzip2 }:
2016-04-12 01:36:51 +00:00
stdenv.mkDerivation rec {
pname = "wv";
version = "1.2.9";
src = fetchurl {
url = "http://www.abisource.com/downloads/${pname}/${version}/${pname}-${version}.tar.gz";
2016-04-12 01:36:51 +00:00
sha256 = "17f16lkdv1c3amaz2hagiicih59ynpp4786k1m2qa1sw68xhswsc";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ zlib imagemagick libpng glib libgsf libxml2 bzip2 ];
hardeningDisable = [ "format" ];
2016-02-08 09:52:47 +00:00
meta = {
description = "Converter from Microsoft Word formats to human-editable ones";
platforms = stdenv.lib.platforms.unix;
2018-08-02 14:36:57 +00:00
license = stdenv.lib.licenses.gpl2;
};
}