858491857e
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mate-session-manager/versions. These checks were done: - built on NixOS - /nix/store/wbgh5848w72f7cvsh7ks2vj7f9i0ylnz-mate-session-manager-1.20.1/bin/mate-session passed the binary check. - /nix/store/wbgh5848w72f7cvsh7ks2vj7f9i0ylnz-mate-session-manager-1.20.1/bin/mate-session-properties passed the binary check. - /nix/store/wbgh5848w72f7cvsh7ks2vj7f9i0ylnz-mate-session-manager-1.20.1/bin/mate-session-save passed the binary check. - /nix/store/wbgh5848w72f7cvsh7ks2vj7f9i0ylnz-mate-session-manager-1.20.1/bin/mate-session-inhibit passed the binary check. - Warning: no invocation of /nix/store/wbgh5848w72f7cvsh7ks2vj7f9i0ylnz-mate-session-manager-1.20.1/bin/mate-wm had a zero exit code or showed the expected version - /nix/store/wbgh5848w72f7cvsh7ks2vj7f9i0ylnz-mate-session-manager-1.20.1/bin/.mate-session-wrapped passed the binary check. - /nix/store/wbgh5848w72f7cvsh7ks2vj7f9i0ylnz-mate-session-manager-1.20.1/bin/.mate-session-properties-wrapped passed the binary check. - /nix/store/wbgh5848w72f7cvsh7ks2vj7f9i0ylnz-mate-session-manager-1.20.1/bin/.mate-session-save-wrapped passed the binary check. - /nix/store/wbgh5848w72f7cvsh7ks2vj7f9i0ylnz-mate-session-manager-1.20.1/bin/.mate-session-inhibit-wrapped passed the binary check. - Warning: no invocation of /nix/store/wbgh5848w72f7cvsh7ks2vj7f9i0ylnz-mate-session-manager-1.20.1/bin/.mate-wm-wrapped had a zero exit code or showed the expected version - 8 of 10 passed binary check by having a zero exit code. - 1 of 10 passed binary check by having the new version present in output. - found 1.20.1 with grep in /nix/store/wbgh5848w72f7cvsh7ks2vj7f9i0ylnz-mate-session-manager-1.20.1 - directory tree listing: https://gist.github.com/f036604f75bea4aed0093a9ca8eb6f0a - du listing: https://gist.github.com/1083d12fd4033f9091a0ce334f09c1e4
39 lines
904 B
Nix
39 lines
904 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, xtrans, dbus-glib, systemd,
|
|
libSM, libXtst, gtk3, hicolor-icon-theme, mate,
|
|
wrapGAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mate-session-manager-${version}";
|
|
version = "1.20.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
|
sha256 = "0gdxa46ps0fxspri08kpp99vzx06faw6x30k6vbjg5m7x1xfq7i5";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
intltool
|
|
xtrans
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
dbus-glib
|
|
systemd
|
|
libSM
|
|
libXtst
|
|
gtk3
|
|
mate.mate-desktop
|
|
hicolor-icon-theme
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "MATE Desktop session manager";
|
|
homepage = https://github.com/mate-desktop/mate-session-manager;
|
|
license = with licenses; [ gpl2 lgpl2 ];
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|