aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/desktops/mate/mate-tweak/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/desktops/mate/mate-tweak/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/desktops/mate/mate-tweak/default.nix83
1 files changed, 83 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/desktops/mate/mate-tweak/default.nix b/infra/libkookie/nixpkgs/pkgs/desktops/mate/mate-tweak/default.nix
new file mode 100644
index 000000000000..9609d832f6b1
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/desktops/mate/mate-tweak/default.nix
@@ -0,0 +1,83 @@
+{ stdenv
+, fetchFromGitHub
+, python3Packages
+, intltool
+, mate
+, libnotify
+, gtk3
+, gdk-pixbuf
+, gobject-introspection
+, wrapGAppsHook
+, glib
+}:
+
+python3Packages.buildPythonApplication rec {
+ pname = "mate-tweak";
+ version = "20.10.0";
+
+ src = fetchFromGitHub {
+ owner = "ubuntu-mate";
+ repo = pname;
+ rev = version;
+ sha256 = "08gw5i5wjxmzn92h9fv6g7q9i00n8shv1wlpy6cb31xy9wbmjph6";
+ };
+
+ nativeBuildInputs = [
+ wrapGAppsHook
+ intltool
+ python3Packages.distutils_extra
+ gobject-introspection
+ ];
+
+ buildInputs = [
+ gtk3
+ gdk-pixbuf
+ libnotify
+ glib
+ mate.mate-applets
+ mate.mate-panel
+ mate.marco
+ mate.libmatekbd
+ mate.mate-session-manager
+ ];
+
+ propagatedBuildInputs = with python3Packages; [
+ distro
+ pygobject3
+ psutil
+ setproctitle
+ ];
+
+ strictDeps = false;
+
+ dontWrapGApps = true;
+
+ postPatch = ''
+ # mate-tweak hardcodes absolute paths everywhere. Nuke from orbit.
+ find . -type f -exec sed -i \
+ -e s,/usr/lib/mate-tweak,$out/lib/mate-tweak,g \
+ {} +
+
+ sed -i 's,{prefix}/,,g' setup.py
+ '';
+
+ # Arguments to be passed to `makeWrapper`, only used by buildPython*
+ preFixup = ''
+ makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
+ '';
+
+ postFixup = ''
+ for i in bin/.mate-tweak-wrapped lib/mate-tweak/mate-tweak-helper; do
+ sed -i "s,usr,run/current-system/sw,g" $out/$i
+ done
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Tweak tool for the MATE Desktop";
+ homepage = "https://github.com/ubuntu-mate/mate-tweak";
+ changelog = "https://github.com/ubuntu-mate/mate-tweak/releases/tag/${version}";
+ license = [ licenses.gpl2Plus ];
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ luc65r ];
+ };
+}