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
64 lines
1.8 KiB
Nix
64 lines
1.8 KiB
Nix
{
|
|
fetchurl,
|
|
appimageTools,
|
|
lib,
|
|
makeWrapper,
|
|
stdenv,
|
|
}:
|
|
|
|
let
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
|
|
|
platform =
|
|
{
|
|
x86_64-linux = "amd64";
|
|
aarch64-linux = "arm64";
|
|
}
|
|
.${system};
|
|
|
|
# Get hash in sri format
|
|
# nix-prefetch-url <url> | xargs nix --extra-experimental-features nix-command hash convert --hash-algo sha256
|
|
hash =
|
|
{
|
|
x86_64-linux = "sha256-DK5+VT4+OCcJ4Bbv6GGs6R332GMsD1gNEmcz0iaJb1c=";
|
|
aarch64-linux = "sha256-Qu2YHGu0EPFaXjlUwJ7On8tOA9rqX/k8UnwADuRxoUk=";
|
|
}
|
|
.${system};
|
|
|
|
pname = "buckets";
|
|
version = "0.80.0";
|
|
src = fetchurl {
|
|
url = "https://github.com/buckets/application/releases/download/v${version}/Buckets-linux-latest-${platform}-${version}.AppImage";
|
|
inherit hash;
|
|
};
|
|
appimageContents = appimageTools.extractType2 { inherit pname version src; };
|
|
in
|
|
appimageTools.wrapType2 {
|
|
inherit pname version src;
|
|
extraPkgs = pkgs: (appimageTools.defaultFhsEnvArgs.multiPkgs pkgs) ++ [ pkgs.libsodium ];
|
|
extraInstallCommands = ''
|
|
source "${makeWrapper}/nix-support/setup-hook"
|
|
wrapProgram $out/bin/buckets
|
|
install -m 444 -D ${appimageContents}/buckets.desktop -t $out/share/applications
|
|
substituteInPlace $out/share/applications/buckets.desktop \
|
|
--replace-fail 'Exec=AppRun' 'Exec=buckets'
|
|
for size in 16 32 48 64 128 256 512; do
|
|
install -m 444 -D ${appimageContents}/usr/share/icons/hicolor/''${size}x''${size}/apps/buckets.png \
|
|
$out/share/icons/hicolor/''${size}x''${size}/apps/buckets.png
|
|
done
|
|
'';
|
|
|
|
meta = {
|
|
description = "Private family budgeting app";
|
|
homepage = "https://www.budgetwithbuckets.com/";
|
|
license = lib.licenses.unfree;
|
|
maintainers = with lib.maintainers; [ kmogged ];
|
|
platforms = [
|
|
"x86_64-linux"
|
|
"aarch64-linux"
|
|
];
|
|
mainProgram = "buckets";
|
|
};
|
|
}
|