nixpkgs/pkgs/desktops/mate/marco/default.nix

39 lines
963 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, gettext, itstool, libxml2, libcanberra-gtk3, libgtop, libstartup_notification, gnome3, gtk3, mate-settings-daemon, wrapGAppsHook }:
2017-08-31 03:01:39 +00:00
stdenv.mkDerivation rec {
pname = "marco";
2020-08-04 23:47:08 +00:00
version = "1.24.1";
2017-08-31 03:01:39 +00:00
src = fetchurl {
url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2020-08-04 23:47:08 +00:00
sha256 = "109b41pjrc1b4slw6sx1lakdhrc46x829vczzk4bz3j15kcszg54";
2017-08-31 03:01:39 +00:00
};
nativeBuildInputs = [
pkgconfig
gettext
2017-08-31 03:01:39 +00:00
itstool
wrapGAppsHook
];
buildInputs = [
libxml2
libcanberra-gtk3
2017-08-31 03:01:39 +00:00
libgtop
libstartup_notification
gtk3
2017-08-31 03:01:39 +00:00
gnome3.zenity
mate-settings-daemon
2017-08-31 03:01:39 +00:00
];
2020-02-14 21:52:51 +00:00
enableParallelBuilding = true;
2017-08-31 03:01:39 +00:00
meta = with stdenv.lib; {
description = "MATE default window manager";
2020-02-12 17:51:19 +00:00
homepage = "https://github.com/mate-desktop/marco";
2017-08-31 03:01:39 +00:00
license = [ licenses.gpl2 ];
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}