mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
poppler_data: install pkgconfig files
This commit is contained in:
parent
d5e1f5bbaa
commit
7ce717a56c
1 changed files with 9 additions and 14 deletions
|
@ -1,4 +1,4 @@
|
|||
{ fetchurl, stdenv, cmake }:
|
||||
{ fetchurl, stdenv }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "poppler-data-0.4.7";
|
||||
|
@ -8,22 +8,17 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "1pm7wg6xqj4sppb5az4pa7psfdk4yxxkw52j85bm9fksibcb0lp7";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake ];
|
||||
postPatch = ''
|
||||
sed -i 's,$(datadir)/pkgconfig,$(prefix)/lib/pkgconfig,g' Makefile
|
||||
'';
|
||||
|
||||
# TODO: actually use $prefix/etc/profile.d in NixOS
|
||||
postInstall =
|
||||
''
|
||||
mkdir -pv ''${out}/etc/profile.d
|
||||
echo "export POPPLER_DATADIR=''${out}/share/poppler" |
|
||||
tee ''${out}/etc/profile.d/60-poppler.sh
|
||||
chmod -c +x ''${out}/etc/profile.d/60-poppler.sh
|
||||
'';
|
||||
installFlags = [ "prefix=$(out)" ];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://poppler.freedesktop.org/;
|
||||
description = "Encoding files for Poppler, a PDF rendering library";
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
license = stdenv.lib.licenses.free; # more free licenses combined
|
||||
maintainers = [ stdenv.lib.maintainers.urkud ];
|
||||
platforms = platforms.all;
|
||||
license = licenses.free; # more free licenses combined
|
||||
maintainers = with maintainers; [ urkud ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue