mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
64ce882421
- No need to pass the version and attrPath arguments
76 lines
1.6 KiB
Nix
76 lines
1.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, pkg-config
|
|
, gettext
|
|
, xtrans
|
|
, dbus-glib
|
|
, systemd
|
|
, libSM
|
|
, libXtst
|
|
, gtk3
|
|
, libepoxy
|
|
, polkit
|
|
, hicolor-icon-theme
|
|
, mate
|
|
, wrapGAppsHook
|
|
, fetchpatch
|
|
, mateUpdateScript
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mate-session-manager";
|
|
version = "1.26.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "05hqi8wlwjr07mp5njhp7h06mgnv98zsxaxkmxc5w3iwb3va45ar";
|
|
};
|
|
|
|
patches = [
|
|
# allow turning on debugging from environment variable
|
|
(fetchpatch {
|
|
url = "https://github.com/mate-desktop/mate-session-manager/commit/3ab6fbfc811d00100d7a2959f8bbb157b536690d.patch";
|
|
sha256 = "0yjaklq0mp44clymyhy240kxlw95z3azmravh4f5pfm9dys33sg0";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
gettext
|
|
xtrans
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
dbus-glib
|
|
systemd
|
|
libSM
|
|
libXtst
|
|
gtk3
|
|
mate.mate-desktop
|
|
hicolor-icon-theme
|
|
libepoxy
|
|
polkit
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postFixup = ''
|
|
substituteInPlace $out/share/xsessions/mate.desktop \
|
|
--replace "Exec=mate-session" "Exec=$out/bin/mate-session"
|
|
'';
|
|
|
|
passthru.providedSessions = [ "mate" ];
|
|
|
|
passthru.updateScript = mateUpdateScript { inherit pname; };
|
|
|
|
meta = with lib; {
|
|
description = "MATE Desktop session manager";
|
|
homepage = "https://github.com/mate-desktop/mate-session-manager";
|
|
license = with licenses; [ gpl2Plus lgpl2Plus ];
|
|
platforms = platforms.unix;
|
|
maintainers = teams.mate.members;
|
|
};
|
|
}
|