mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
mate-user-guide: init at 1.18.0
This commit is contained in:
parent
492ffae9b6
commit
5953691edd
@ -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
|
||||
];
|
||||
|
||||
|
25
pkgs/desktops/mate/mate-user-guide/default.nix
Normal file
25
pkgs/desktops/mate/mate-user-guide/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user