lianad: 8.0 -> 9.0 (#374476)

This commit is contained in:
Arne Keller
2025-01-22 23:33:05 +01:00
committed by GitHub
+6 -3
View File
@@ -8,19 +8,22 @@
rustPlatform.buildRustPackage rec {
pname = "lianad";
version = "8.0"; # keep in sync with liana
version = "9.0"; # keep in sync with liana
src = fetchFromGitHub {
owner = "wizardsardine";
repo = "liana";
rev = "v${version}";
hash = "sha256-2aIaRZNIRgFdA+NVnzOkEE3kYA15CoNBrsNGBhIz0nU=";
hash = "sha256-RFlICvoePwSglpheqMb+820My//LElnSeMDPFmXyHz0=";
};
cargoHash = "sha256-/EkDAZPNka+vRWsAo4i/65lufUu8N/m8cfBsOInjaxQ=";
useFetchCargoVendor = true;
cargoHash = "sha256-nj7L4glbjevVd1ef6RUGPm4hpzeNdnsCLC01BOJj6kI=";
buildInputs = [ udev ];
buildAndTestSubdir = "lianad";
postInstall = ''
install -Dm0644 ./contrib/lianad_config_example.toml $out/etc/liana/config.toml
'';