3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/data/misc/poppler-data/default.nix
2021-12-25 17:05:20 -05:00

21 lines
577 B
Nix

{ fetchurl, lib, stdenv, cmake, ninja }:
stdenv.mkDerivation rec {
name = "poppler-data-0.4.11";
src = fetchurl {
url = "https://poppler.freedesktop.org/${name}.tar.gz";
sha256 = "sha256-LOwFzRuwOvmKiwah4i9ubhplseLzgWyzBpuwh0gl8Iw=";
};
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; [ ];
};
}