nixpkgs/pkgs/desktops/mate/mate-netbook/default.nix

41 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libwnck3, libfakekey, libXtst, mate, wrapGAppsHook }:
2018-01-01 13:23:20 +00:00
stdenv.mkDerivation rec {
name = "mate-netbook-${version}";
version = "1.20.1";
2018-01-01 13:23:20 +00:00
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
sha256 = "1ils0lav6j779kgz2py6zdalcfifpnp01clspbnkhb3v1ha1ncsq";
2018-01-01 13:23:20 +00:00
};
nativeBuildInputs = [
pkgconfig
intltool
wrapGAppsHook
];
buildInputs = [
gtk3
libwnck3
libfakekey
libXtst
mate.mate-panel
2018-01-01 13:23:20 +00:00
];
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 ];
};
}