delete litecoin

This commit is contained in:
Sergei Poljanski 2026-03-19 18:08:48 +02:00
commit a7a7111c76
Signed by: asxpi
GPG key ID: 4F8851660FA4121B
2 changed files with 0 additions and 33 deletions

View file

@ -15,7 +15,6 @@
./modules/programs.nix
./modules/wireguard.nix
./modules/security.nix
./modules/litecoin.nix
];
# This value determines the NixOS release from which the default

View file

@ -1,32 +0,0 @@
# Litecoin Core v0.21.4 - full node wallet
{ config, pkgs, lib, ... }:
let
litecoin-core = pkgs.stdenv.mkDerivation rec {
pname = "litecoin-core";
version = "0.21.4";
src = pkgs.fetchurl {
url = "https://download.litecoin.org/litecoin-${version}/linux/litecoin-${version}-x86_64-linux-gnu.tar.gz";
hash = "sha256-hX/EEJHyuuZcO/D9TTiPypFfyToD8W3SV4rDzJKJg5A=";
};
sourceRoot = ".";
nativeBuildInputs = [ pkgs.autoPatchelfHook ];
buildInputs = with pkgs; [
stdenv.cc.cc.lib
fontconfig
freetype
xorg.libxcb
];
installPhase = ''
mkdir -p $out/bin
cp litecoin-${version}/bin/* $out/bin/
'';
};
in
{
environment.systemPackages = [ litecoin-core ];
}