mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-15 07:47:56 +00:00
lasem: init at 0.4.3
This commit is contained in:
parent
eee2410062
commit
9cf3c1f52e
38
pkgs/development/libraries/lasem/default.nix
Normal file
38
pkgs/development/libraries/lasem/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ fetchurl, stdenv, pkgconfig, intltool, gobject-introspection, glib, gdk_pixbuf
|
||||
, libxml2, cairo, pango, gnome3 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "lasem";
|
||||
version = "0.4.3";
|
||||
|
||||
outputs = [ "bin" "out" "dev" "man" "doc" "devdoc" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||
sha256 = "13ym5pm2y3wk5hh9zb2535i3lnhnzyzs0na1knxwgvwxazwm1ng7";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig 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;
|
||||
};
|
||||
}
|
@ -10464,6 +10464,8 @@ in
|
||||
|
||||
languageMachines = recurseIntoAttrs (import ../development/libraries/languagemachines/packages.nix { inherit callPackage; });
|
||||
|
||||
lasem = callPackage ../development/libraries/lasem { };
|
||||
|
||||
lasso = callPackage ../development/libraries/lasso { };
|
||||
|
||||
LASzip = callPackage ../development/libraries/LASzip { };
|
||||
|
Loading…
Reference in New Issue
Block a user