mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01: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)
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{ lib
|
|
, fetchFromSourcehut
|
|
, python3
|
|
, glib
|
|
, gobject-introspection
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, wrapGAppsHook3
|
|
, gtk3
|
|
, atk
|
|
, libhandy
|
|
, libnotify
|
|
, pango
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "caerbannog";
|
|
version = "0.3";
|
|
format = "other";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~craftyguy";
|
|
repo = "caerbannog";
|
|
rev = version;
|
|
sha256 = "0wqkb9zcllxm3fdsr5lphknkzy8r1cr80f84q200hbi99qql1dxh";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
glib
|
|
gobject-introspection
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
atk
|
|
libhandy
|
|
libnotify
|
|
pango
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
anytree
|
|
fuzzyfinder
|
|
gpgme
|
|
pygobject3
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Mobile-friendly Gtk frontend for password-store";
|
|
mainProgram = "caerbannog";
|
|
homepage = "https://sr.ht/~craftyguy/caerbannog/";
|
|
changelog = "https://git.sr.ht/~craftyguy/caerbannog/refs/${version}";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|