mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
d1f7fee20a
The pc file depends on freetype.dev so we would rather not have it in out.
30 lines
785 B
Nix
30 lines
785 B
Nix
{ stdenv, fetchFromGitHub, pkgconfig
|
|
, freetype, glib, imagemagick, libjpeg, libpng, libxml2, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libwmf";
|
|
version = "0.2.12";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "caolanm";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0i2w5hg8mbgmgabxyd48qp1gx2mhk33hgr3jqvg72k0nhkd2jhf6";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ zlib imagemagick libpng glib freetype libjpeg libxml2 ];
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "WMF library from wvWare";
|
|
homepage = "http://wvware.sourceforge.net/libwmf.html";
|
|
downloadPage = "https://github.com/caolanm/libwmf/releases";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|