2018-02-02 16:01:44 -08:00
|
|
|
{ fetchurl, stdenv, cmake, ninja }:
|
2007-11-11 08:00:51 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-05-11 01:21:04 -07:00
|
|
|
name = "poppler-data-0.4.9";
|
2007-11-11 08:00:51 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://poppler.freedesktop.org/${name}.tar.gz";
|
2018-05-11 01:21:04 -07:00
|
|
|
sha256 = "04i0wgdkn5lhda8cyxd1ll4a2p41pwqrwd47n9mdpl7cx5ypx70z";
|
2007-11-11 08:00:51 -08:00
|
|
|
};
|
|
|
|
|
2018-02-02 16:01:44 -08:00
|
|
|
nativeBuildInputs = [ cmake ninja ];
|
2008-07-18 00:45:48 -07:00
|
|
|
|
2016-08-18 02:46:58 -07:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-17 14:59:26 -07:00
|
|
|
homepage = https://poppler.freedesktop.org/;
|
2008-07-18 00:45:48 -07:00
|
|
|
description = "Encoding files for Poppler, a PDF rendering library";
|
2016-08-18 02:46:58 -07:00
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.free; # more free licenses combined
|
2017-03-27 10:11:17 -07:00
|
|
|
maintainers = with maintainers; [ ];
|
2008-07-18 00:45:48 -07:00
|
|
|
};
|
2007-11-11 08:00:51 -08:00
|
|
|
}
|