gnome3.yelp-xsl: 3.32.1 → 3.34.0
This commit is contained in:
parent
93ecc2a52f
commit
b748da63b8
1 changed files with 24 additions and 9 deletions
|
@ -1,23 +1,38 @@
|
||||||
{ stdenv, intltool, fetchurl, pkgconfig
|
{ stdenv
|
||||||
, itstool, libxml2, libxslt, gnome3 }:
|
, gettext
|
||||||
|
, fetchurl
|
||||||
|
, pkgconfig
|
||||||
|
, itstool
|
||||||
|
, libxml2
|
||||||
|
, libxslt
|
||||||
|
, gnome3
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "yelp-xsl";
|
pname = "yelp-xsl";
|
||||||
version = "3.32.1";
|
version = "3.34.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/yelp-xsl/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
url = "mirror://gnome/sources/yelp-xsl/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "013z2ixx9kfrs6hq79qpil093xfbc12y1p0mvsh6lpala30iphya";
|
sha256 = "1qjfw4s8yf4hmyqrcqy6q2rsnb8b2cl1qbq67m7n7pyiczp3l1p8";
|
||||||
};
|
};
|
||||||
|
|
||||||
passthru = {
|
nativeBuildInputs = [
|
||||||
updateScript = gnome3.updateScript { packageName = "yelp-xsl"; attrPath = "gnome3.yelp-xsl"; };
|
pkgconfig
|
||||||
};
|
gettext
|
||||||
|
itstool
|
||||||
|
libxml2
|
||||||
|
libxslt
|
||||||
|
];
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
passthru = {
|
||||||
buildInputs = [ intltool itstool libxml2 libxslt ];
|
updateScript = gnome3.updateScript {
|
||||||
|
packageName = pname;
|
||||||
|
attrPath = "gnome3.${pname}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://wiki.gnome.org/Apps/Yelp;
|
homepage = https://wiki.gnome.org/Apps/Yelp;
|
||||||
|
|
Loading…
Reference in a new issue