summary refs log tree commit diff
path: root/pkgs/data/misc/poppler-data/default.nix
blob: c06e63d3e692b9a83edabc2da870b294f79b50d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ 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";
  };

  nativeBuildInputs = [ cmake ninja ];

  meta = with stdenv.lib; {
    homepage = "https://poppler.freedesktop.org/";
    description = "Encoding files for Poppler, a PDF rendering library";
    platforms = platforms.all;
    license = licenses.free; # more free licenses combined
    maintainers = with maintainers; [ ];
  };
}