lol
1{ fetchurl, stdenv, cmake, ninja }:
2
3stdenv.mkDerivation rec {
4 name = "poppler-data-0.4.9";
5
6 src = fetchurl {
7 url = "https://poppler.freedesktop.org/${name}.tar.gz";
8 sha256 = "04i0wgdkn5lhda8cyxd1ll4a2p41pwqrwd47n9mdpl7cx5ypx70z";
9 };
10
11 nativeBuildInputs = [ cmake ninja ];
12
13 meta = with stdenv.lib; {
14 homepage = https://poppler.freedesktop.org/;
15 description = "Encoding files for Poppler, a PDF rendering library";
16 platforms = platforms.all;
17 license = licenses.free; # more free licenses combined
18 maintainers = with maintainers; [ ];
19 };
20}