nixpkgs/pkgs/development/libraries/pangoxsl/default.nix
Jonathan Ringer 9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00

23 lines
620 B
Nix

{stdenv, fetchurl, pkg-config, glib, pango}:
stdenv.mkDerivation {
name = "pangoxsl-1.6.0.3";
src = fetchurl {
url = "mirror://sourceforge/pangopdf/pangoxsl-1.6.0.3.tar.gz";
sha256 = "1wcd553nf4nwkrfrh765cyzwj9bsg7zpkndg2hjs8mhwgx04lm8n";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
glib
pango
];
meta = with stdenv.lib; {
description = "Implements several of the inline properties defined by XSL that are not currently implemented by Pango";
homepage = "https://sourceforge.net/projects/pangopdf";
platforms = platforms.unix;
license = licenses.lgpl2;
};
}