nixpkgs/pkgs/data/misc/poppler-data/default.nix

21 lines
577 B
Nix
Raw Normal View History

2018-02-03 00:01:44 +00:00
{ fetchurl, stdenv, cmake, ninja }:
stdenv.mkDerivation rec {
name = "poppler-data-0.4.9";
src = fetchurl {
url = "https://poppler.freedesktop.org/${name}.tar.gz";
sha256 = "04i0wgdkn5lhda8cyxd1ll4a2p41pwqrwd47n9mdpl7cx5ypx70z";
};
2018-02-03 00:01:44 +00:00
nativeBuildInputs = [ cmake ninja ];
2016-08-18 09:46:58 +00:00
meta = with stdenv.lib; {
2017-08-17 21:59:26 +00:00
homepage = https://poppler.freedesktop.org/;
description = "Encoding files for Poppler, a PDF rendering library";
2016-08-18 09:46:58 +00:00
platforms = platforms.all;
license = licenses.free; # more free licenses combined
maintainers = with maintainers; [ ];
};
}