2019-04-21 12:40:55 -03:00
|
|
|
{ stdenv, fetchurl, intltool, itstool, libxml2, yelp }:
|
2017-12-31 00:33:53 -02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "mate-user-guide";
|
2019-09-23 07:00:58 -03:00
|
|
|
version = "1.22.3";
|
2017-12-31 00:33:53 -02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-09-23 07:00:58 -03:00
|
|
|
sha256 = "0zv8arsxnbab0qk3ck9i1wp3d4gfclcv6vq6nh5i8zjz6rpp9cjs";
|
2017-12-31 00:33:53 -02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ itstool intltool libxml2 ];
|
|
|
|
|
|
|
|
buildInputs = [ yelp ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "MATE User Guide";
|
2019-04-14 19:25:45 -04:00
|
|
|
homepage = https://mate-desktop.org;
|
2017-12-31 00:33:53 -02:00
|
|
|
license = with licenses; [ gpl2Plus fdl12 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|