3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/mate/marco/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.1 KiB
Nix
Raw Normal View History

2022-07-12 12:56:56 +01:00
{ lib
, stdenv
, fetchurl
, pkg-config
, gettext
, itstool
, libxml2
, libcanberra-gtk3
, libgtop
, libXdamage
, libXpresent
, libstartup_notification
, gnome
, glib
, gtk3
, mate-settings-daemon
, wrapGAppsHook
, mateUpdateScript
}:
2017-08-31 04:01:39 +01:00
stdenv.mkDerivation rec {
pname = "marco";
2021-08-06 20:08:18 +01:00
version = "1.26.0";
2017-08-31 04:01:39 +01:00
src = fetchurl {
2021-01-15 13:21:58 +00:00
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2021-08-06 20:08:18 +01:00
sha256 = "01avxrg2fc6grfrp6hl8b0im4scy9xf6011swfrhli87ig6hhg7n";
2017-08-31 04:01:39 +01:00
};
nativeBuildInputs = [
2021-01-17 02:21:50 +00:00
pkg-config
gettext
2017-08-31 04:01:39 +01:00
itstool
wrapGAppsHook
];
buildInputs = [
libxml2
libcanberra-gtk3
2017-08-31 04:01:39 +01:00
libgtop
libXdamage
libXpresent
libstartup_notification
gtk3
gnome.zenity
mate-settings-daemon
2017-08-31 04:01:39 +01:00
];
2021-08-06 20:08:18 +01:00
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
2020-02-14 21:52:51 +00:00
enableParallelBuilding = true;
passthru.updateScript = mateUpdateScript { inherit pname; };
2021-04-02 20:58:16 +01:00
meta = with lib; {
2017-08-31 04:01:39 +01:00
description = "MATE default window manager";
2020-02-12 17:51:19 +00:00
homepage = "https://github.com/mate-desktop/marco";
2021-04-22 14:23:43 +01:00
license = [ licenses.gpl2Plus ];
2017-08-31 04:01:39 +01:00
platforms = platforms.unix;
maintainers = teams.mate.members;
2017-08-31 04:01:39 +01:00
};
}