depot/pkgs/by-name/ra/railway-wallet/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

22 lines
580 B
Nix

{
lib,
appimageTools,
fetchurl,
}:
appimageTools.wrapType2 rec {
pname = "railway-wallet";
version = "5.17.10";
src = fetchurl {
url = "https://github.com/Railway-Wallet/Railway-Wallet/releases/download/v${version}/Railway-linux-x86_64.AppImage";
hash = "sha256-dTvoX+wC/LfSPU7/Cftkqm6fvNwzwvMzizxGgTLOJgw=";
};
meta = {
description = "Private DeFi wallet for Linux";
homepage = "https://www.railway.xyz";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ mitchmindtree ];
platforms = [ "x86_64-linux" ];
};
}