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

39 lines
956 B
Nix
Raw Normal View History

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