3608b026dd
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mate-netbook/versions. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/w9xig0615w28s0nyrbawsfgkcrbk5ms9-mate-netbook-1.20.1/bin/mate-maximus had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/w9xig0615w28s0nyrbawsfgkcrbk5ms9-mate-netbook-1.20.1/bin/.mate-maximus-wrapped had a zero exit code or showed the expected version - 0 of 2 passed binary check by having a zero exit code. - 0 of 2 passed binary check by having the new version present in output. - found 1.20.1 with grep in /nix/store/w9xig0615w28s0nyrbawsfgkcrbk5ms9-mate-netbook-1.20.1 - directory tree listing: https://gist.github.com/807a897f629ab3591b06e1d44240a2bb - du listing: https://gist.github.com/1924abc657411636ba23204706014b19
41 lines
1.0 KiB
Nix
41 lines
1.0 KiB
Nix
{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libwnck3, libfakekey, libXtst, mate, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mate-netbook-${version}";
|
|
version = "1.20.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
|
sha256 = "1ils0lav6j779kgz2py6zdalcfifpnp01clspbnkhb3v1ha1ncsq";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|