nixpkgs-suyu/pkgs/desktops/mate/mate-netbook/default.nix
José Romildo Malaquias aa001cc937 mate: remove major-ver and minor-ver
Keep only the version atribute in derivations, with the full version
string of the package. This will make it easier to write a script for
automatic updating of the packages using the update-source-version
command from common-updater-scripts.
2018-02-13 20:44:07 -02:00

40 lines
1 KiB
Nix

{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libwnck3, libfakekey, libXtst, mate, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "mate-netbook-${version}";
version = "1.18.2";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
sha256 = "0xy5mhkg0xfgyr7gnnjrfzqhmdnhyqscrl2h496p06cflknm17vb";
};
nativeBuildInputs = [
pkgconfig
intltool
wrapGAppsHook
];
buildInputs = [
gtk3
libwnck3
libfakekey
libXtst
mate.mate-panel
];
meta = with stdenv.lib; {
description = "MATE utilities for netbooks";
longDescription = ''
MATE utilities for netbooks are an applet and a daemon to maximize
windows and move their titles on the panel.
Installing these utilities is recommended for netbooks and similar
devices with low resolution displays.
'';
homepage = http://mate-desktop.org;
license = with licenses; [ gpl3 lgpl2Plus ];
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}