mate-netbook: init at 1.18.2

authored by

José Romildo Malaquias and committed by
Tuomas Tynkkynen
07b36241 dd6856a8

+44
+2
pkgs/desktops/mate/default.nix
··· 26 26 mate-icon-theme-faenza = callPackage ./mate-icon-theme-faenza { }; 27 27 mate-media = callPackage ./mate-media { }; 28 28 mate-menus = callPackage ./mate-menus { }; 29 + mate-netbook = callPackage ./mate-netbook { }; 29 30 mate-notification-daemon = callPackage ./mate-notification-daemon { }; 30 31 mate-panel = callPackage ./mate-panel { }; 31 32 mate-polkit = callPackage ./mate-polkit { }; ··· 67 68 mate-calc 68 69 mate-icon-theme-faenza 69 70 mate-media 71 + mate-netbook 70 72 mate-power-manager 71 73 mate-screensaver 72 74 mate-system-monitor
+42
pkgs/desktops/mate/mate-netbook/default.nix
··· 1 + { stdenv, fetchurl, pkgconfig, intltool, gtk3, libwnck3, libfakekey, libXtst, mate-panel, wrapGAppsHook }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "mate-netbook-${version}"; 5 + version = "${major-ver}.${minor-ver}"; 6 + major-ver = "1.18"; 7 + minor-ver = "2"; 8 + 9 + src = fetchurl { 10 + url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz"; 11 + sha256 = "0xy5mhkg0xfgyr7gnnjrfzqhmdnhyqscrl2h496p06cflknm17vb"; 12 + }; 13 + 14 + nativeBuildInputs = [ 15 + pkgconfig 16 + intltool 17 + wrapGAppsHook 18 + ]; 19 + 20 + buildInputs = [ 21 + gtk3 22 + libwnck3 23 + libfakekey 24 + libXtst 25 + mate-panel 26 + ]; 27 + 28 + meta = with stdenv.lib; { 29 + description = "MATE utilities for netbooks"; 30 + longDescription = '' 31 + MATE utilities for netbooks are an applet and a daemon to maximize 32 + windows and move their titles on the panel. 33 + 34 + Installing these utilities is recommended for netbooks and similar 35 + devices with low resolution displays. 36 + ''; 37 + homepage = http://mate-desktop.org; 38 + license = with licenses; [ gpl3 lgpl2Plus ]; 39 + platforms = platforms.unix; 40 + maintainers = [ maintainers.romildo ]; 41 + }; 42 + }