Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
63 lines
1.1 KiB
Nix
63 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";
|
|
tag = 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 = {
|
|
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 = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|