mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 00:04:14 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
44 lines
983 B
Nix
44 lines
983 B
Nix
{
|
|
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.hostPlatform.isAarch64;
|
|
};
|
|
}
|