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

24 lines
666 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchurl, zlib, imagemagick, libpng, glib, pkg-config, 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";
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config ];
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";
2021-01-15 09:19:50 +00:00
platforms = lib.platforms.unix;
license = lib.licenses.gpl2;
};
}