9bb3fccb5b
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.
39 lines
959 B
Nix
39 lines
959 B
Nix
{ fetchurl, stdenv, pkg-config, intltool, gobject-introspection, glib, gdk-pixbuf
|
|
, libxml2, cairo, pango, gnome3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lasem";
|
|
version = "0.4.4";
|
|
|
|
outputs = [ "bin" "out" "dev" "man" "doc" "devdoc" ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "0fds3fsx84ylsfvf55zp65y8xqjj5n8gbhcsk02vqglivk7izw4v";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config intltool gobject-introspection ];
|
|
|
|
propagatedBuildInputs = [
|
|
glib gdk-pixbuf libxml2 cairo pango
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
doCheck = true;
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
description = "SVG and MathML rendering library";
|
|
|
|
homepage = "https://wiki.gnome.org/Projects/Lasem";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|