2021-02-01 20:14:13 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, libxml2
|
|
|
|
, libxslt
|
|
|
|
, itstool
|
|
|
|
, gnome3
|
|
|
|
, pkg-config
|
|
|
|
}:
|
2016-09-18 21:35:23 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "yelp-tools";
|
2020-08-20 16:41:21 +02:00
|
|
|
version = "3.38.0";
|
2018-02-25 21:07:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-23 18:15:07 +01:00
|
|
|
url = "mirror://gnome/sources/yelp-tools/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-08-20 16:41:21 +02:00
|
|
|
sha256 = "1c045c794sm83rrjan67jmsk20qacrw1m814p4nw85w5xsry8z30";
|
2018-02-25 21:07:20 +01:00
|
|
|
};
|
|
|
|
|
2021-02-01 20:14:13 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libxml2
|
|
|
|
libxslt
|
|
|
|
itstool
|
|
|
|
gnome3.yelp-xsl
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2018-02-25 21:07:20 +01:00
|
|
|
passthru = {
|
2019-11-20 04:30:05 +01:00
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
};
|
2018-02-25 21:07:20 +01:00
|
|
|
};
|
2016-09-18 21:35:23 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://wiki.gnome.org/Apps/Yelp/Tools";
|
2016-09-18 21:35:23 +02:00
|
|
|
description = "Small programs that help you create, edit, manage, and publish your Mallard or DocBook documentation";
|
2021-02-01 20:14:13 +01:00
|
|
|
maintainers = teams.gnome.members ++ (with maintainers; [ domenkozar ]);
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.unix;
|
2016-09-18 21:35:23 +02:00
|
|
|
};
|
|
|
|
}
|