depot/third_party/nixpkgs/pkgs/development/libraries/pangoxsl/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

22 lines
618 B
Nix

{lib, 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 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;
};
}