mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
52 lines
1.0 KiB
Nix
52 lines
1.0 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, gobject-introspection
|
|
, libnotify
|
|
, wrapGAppsHook3
|
|
, gtk3
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "notifymuch";
|
|
version = "0.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kspi";
|
|
repo = "notifymuch";
|
|
# https://github.com/kspi/notifymuch/issues/11
|
|
rev = "9d4aaf54599282ce80643b38195ff501120807f0";
|
|
sha256 = "1lssr7iv43mp5v6nzrfbqlfzx8jcc7m636wlfyhhnd8ydd39n6k4";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
libnotify
|
|
gtk3
|
|
] ++ (with python3.pkgs; [
|
|
notmuch
|
|
pygobject3
|
|
]);
|
|
|
|
nativeBuildInputs = [
|
|
gobject-introspection
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
dontWrapGApps = true;
|
|
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
|
|
strictDeps = false;
|
|
|
|
meta = with lib; {
|
|
description = "Display desktop notifications for unread mail in a notmuch database";
|
|
mainProgram = "notifymuch";
|
|
homepage = "https://github.com/kspi/notifymuch";
|
|
maintainers = with maintainers; [ arjan-s ];
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|