mate-user-guide: init at 1.18.0

This commit is contained in:
José Romildo Malaquias 2017-12-31 00:33:53 -02:00 committed by Tuomas Tynkkynen
parent 492ffae9b6
commit 5953691edd
2 changed files with 27 additions and 0 deletions

View file

@ -31,6 +31,7 @@ let
mate-settings-daemon = callPackage ./mate-settings-daemon { };
mate-terminal = callPackage ./mate-terminal { };
mate-themes = callPackage ./mate-themes { };
mate-user-guide = callPackage ./mate-user-guide { };
pluma = callPackage ./pluma { };
basePackages = [
@ -60,6 +61,7 @@ let
mate-media
mate-power-manager
mate-terminal
mate-user-guide
pluma
];

View file

@ -0,0 +1,25 @@
{ stdenv, fetchurl, intltool, itstool, libxml2, yelp }:
stdenv.mkDerivation rec {
name = "mate-user-guide-${version}";
version = "${major-ver}.${minor-ver}";
major-ver = "1.18";
minor-ver = "0";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
sha256 = "0f3b46r9a3cywm7rpj08xlkfnlfr9db58xfcpix8i33qp50fxqmb";
};
nativeBuildInputs = [ itstool intltool libxml2 ];
buildInputs = [ yelp ];
meta = with stdenv.lib; {
description = "MATE User Guide";
homepage = http://mate-desktop.org;
license = with licenses; [ gpl2Plus fdl12 ];
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}