lianad: init at 6.0
This commit is contained in:
parent
f00f64f9df
commit
194f865bd4
43
pkgs/by-name/li/lianad/package.nix
Normal file
43
pkgs/by-name/li/lianad/package.nix
Normal file
@ -0,0 +1,43 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
rustPlatform,
|
||||
fetchFromGitHub,
|
||||
udev,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "lianad";
|
||||
version = "6.0"; # keep in sync with liana
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "wizardsardine";
|
||||
repo = "liana";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-LLDgo4GoRTVYt72IT0II7O5wiMDrvJhe0f2yjzxQgsE=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-a4hLtDXnEeTa0e1LcMkEPKEqGBp5bzWseq5Pe5ZYF1M=";
|
||||
|
||||
buildInputs = [ udev ];
|
||||
|
||||
postInstall = ''
|
||||
install -Dm0644 ./contrib/lianad_config_example.toml $out/etc/liana/config.toml
|
||||
'';
|
||||
|
||||
# bypass broken unit tests
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
mainProgram = "lianad";
|
||||
description = "Bitcoin wallet leveraging on-chain timelocks for safety and recovery";
|
||||
homepage = "https://wizardsardine.com/liana";
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = [
|
||||
lib.maintainers.dunxen
|
||||
lib.maintainers.plebhash
|
||||
];
|
||||
platforms = lib.platforms.linux;
|
||||
broken = stdenv.isAarch64;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user