⬆️ Archon upgrade #5
@@ -67,6 +67,7 @@ jobs:
|
||||
".#packages.${system}.vintage-story" \
|
||||
".#packages.${system}.swaytreesave" \
|
||||
".#packages.${system}.archon" \
|
||||
".#packages.${system}.ani-cli-rs" \
|
||||
| tee built-paths.txt
|
||||
|
||||
- name: Push packages to Attic
|
||||
|
||||
@@ -6,4 +6,5 @@
|
||||
vintage-story = pkgs.callPackage ./linux/vintage-story.nix {};
|
||||
archon = pkgs.callPackage ./linux/archon.nix {};
|
||||
yubilock = pkgs.callPackage ./linux/yubilock/default.nix { };
|
||||
ani-cli-rs = pkgs.callPackage ./linux/ani-cli-rs.nix { };
|
||||
}
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
{ pkgs }:
|
||||
let
|
||||
pname = "ani-cli-rs";
|
||||
version = "0.9.3";
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "vorlie";
|
||||
repo = "ani-cli-rs";
|
||||
rev = "${version}";
|
||||
sha256 = "sha256-4JjCe9dCggLtETmH8yWYyn1tkHimPYtTp0BLQML3NKY=";
|
||||
};
|
||||
in pkgs.rustPlatform.buildRustPackage {
|
||||
inherit pname version src;
|
||||
cargoLock = { lockFile = "${src}/Cargo.lock"; };
|
||||
|
||||
# tests make this package fail to build, this line skips them
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "A cross-platform Rust port of ani-cli with two independent Anikoto catalogs and native MegaPlay/KotoCDN playback";
|
||||
mainProgram = "ani-cli-rs";
|
||||
homepage = "https://github.com/vorlie/ani-cli-rs";
|
||||
maintainers = [ "wymillerlinux" ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
changelog = "https://github.com/vorlie/ani-cli-rs/releases/tag/${version}";
|
||||
};
|
||||
}
|
||||
@@ -27,11 +27,11 @@ assert waylandSupport -> libxkbcommon != null;
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "vintagestory";
|
||||
version = "1.22.3";
|
||||
version = "1.22.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://cdn.vintagestory.at/gamefiles/stable/vs_client_linux-x64_${finalAttrs.version}.tar.gz";
|
||||
hash = "sha256-sa4Pj1DwT6W6LJCAYznmbyqPtMUTaLSNTkXS1imQp04=";
|
||||
hash = "sha256-xJPyaYklEq2BeUX9+7hNPI6WC6ibcQDS+sKeqKYSh3A=";
|
||||
};
|
||||
|
||||
__structuredAttrs = true;
|
||||
|
||||
Reference in New Issue
Block a user