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

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

72 lines
1.3 KiB
Nix
Raw Normal View History

2022-07-12 13:56:56 +02:00
{ lib
, stdenv
, fetchurl
, pkg-config
, gettext
, itstool
, libxml2
, libcanberra-gtk3
, libgtop
, libXdamage
, libXpresent
, libXres
2022-07-12 13:56:56 +02:00
, libstartup_notification
, zenity
2022-07-12 13:56:56 +02:00
, glib
, gtk3
, mate-desktop
2022-07-12 13:56:56 +02:00
, mate-settings-daemon
, wrapGAppsHook3
2022-07-12 13:56:56 +02:00
, mateUpdateScript
}:
2017-08-31 05:01:39 +02:00
stdenv.mkDerivation rec {
pname = "marco";
version = "1.28.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";
sha256 = "JJbl5A7pgM1oSUk6w+D4/Q3si4HGdNqNm6GaV38KwuE=";
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
wrapGAppsHook3
2017-08-31 05:01:39 +02:00
];
buildInputs = [
libxml2
libcanberra-gtk3
2017-08-31 05:01:39 +02:00
libgtop
libXdamage
libXpresent
libXres
libstartup_notification
gtk3
zenity
mate-desktop
mate-settings-daemon
2017-08-31 05:01:39 +02:00
];
postPatch = ''
substituteInPlace src/core/util.c \
--replace-fail 'argvl[i++] = "zenity"' 'argvl[i++] = "${zenity}/bin/zenity"'
'';
env.NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
2021-08-06 21:08:18 +02:00
2020-02-14 22:52:51 +01:00
enableParallelBuilding = true;
passthru.updateScript = mateUpdateScript { inherit pname; };
2021-04-02 21:58:16 +02:00
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";
2021-04-22 15:23:43 +02:00
license = [ licenses.gpl2Plus ];
2017-08-31 05:01:39 +02:00
platforms = platforms.unix;
maintainers = teams.mate.members;
2017-08-31 05:01:39 +02:00
};
}