My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/lasem/default.nix

39 lines
979 B

{ fetchurl, lib, stdenv, pkg-config, intltool, gobject-introspection, glib, gdk-pixbuf
, libxml2, cairo, pango, gnome }:
stdenv.mkDerivation rec {
pname = "lasem";
version = "0.4.4";
outputs = [ "bin" "out" "dev" "man" "doc" "devdoc" ];
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${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 = gnome.updateScript {
packageName = pname;
versionPolicy = "odd-unstable";
};
};
meta = {
description = "SVG and MathML rendering library";
homepage = "https://wiki.gnome.org/Projects/Lasem";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.unix;
};
}