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

21 lines
576 B
Nix
Raw Normal View History

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