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

36 lines
857 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, libcanberra-gtk3, libgtop, gnome2, gnome3, gtk3, mate, wrapGAppsHook }:
2017-08-31 05:01:39 +02:00
stdenv.mkDerivation rec {
name = "marco-${version}";
2019-01-14 14:41:52 +01:00
version = "1.20.3";
2017-08-31 05:01:39 +02:00
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
2019-01-14 14:41:52 +01:00
sha256 = "192nlr4ylisxisk0ljabm8v0a5sapdncj4gbw39q2fpr938ifs32";
2017-08-31 05:01:39 +02:00
};
nativeBuildInputs = [
pkgconfig
intltool
itstool
wrapGAppsHook
];
buildInputs = [
libxml2
libcanberra-gtk3
2017-08-31 05:01:39 +02:00
libgtop
gnome2.startup_notification
gtk3
2017-08-31 05:01:39 +02:00
gnome3.zenity
];
2017-08-31 05:01:39 +02:00
meta = with stdenv.lib; {
description = "MATE default window manager";
homepage = https://github.com/mate-desktop/marco;
license = [ licenses.gpl2 ];
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}