nixpkgs/pkgs/data/misc/poppler-data/default.nix

21 lines
578 B
Nix
Raw Normal View History

{ fetchurl, lib, stdenv, cmake, ninja }:
stdenv.mkDerivation rec {
2020-11-04 04:10:16 +00:00
name = "poppler-data-0.4.10";
src = fetchurl {
url = "https://poppler.freedesktop.org/${name}.tar.gz";
2020-11-04 04:10:16 +00:00
sha256 = "0c3vjs3p7rjc4yfacnhd865r27czmzwcr4j2z4jldi68dvvcwbvf";
};
2018-02-03 00:01:44 +00:00
nativeBuildInputs = [ cmake ninja ];
meta = with lib; {
homepage = "https://poppler.freedesktop.org/";
description = "Encoding files for Poppler, a PDF rendering library";
2016-08-18 09:46:58 +00:00
platforms = platforms.all;
license = licenses.free; # more free licenses combined
maintainers = with maintainers; [ ];
};
}