summary refs log tree commit diff
path: root/pkgs/data/misc/poppler-data/default.nix
blob: 5d6e7b8e80dc289e839d140244b7e2817bbefd20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ fetchurl, lib, stdenv, cmake, ninja }:

stdenv.mkDerivation rec {
  name = "poppler-data-0.4.10";

  src = fetchurl {
    url = "https://poppler.freedesktop.org/${name}.tar.gz";
    sha256 = "0c3vjs3p7rjc4yfacnhd865r27czmzwcr4j2z4jldi68dvvcwbvf";
  };

  nativeBuildInputs = [ cmake ninja ];

  meta = with 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; [ ];
  };
}