📦 Add cliamp package #12

Merged
wymiller merged 3 commits from cliamp into master 2026-09-02 12:42:28 -05:00
4 changed files with 27 additions and 0 deletions
+1
View File
@@ -69,6 +69,7 @@ jobs:
NIXPKGS_ALLOW_UNFREE=1 nix build --impure --accept-flake-config --no-link --print-out-paths -L \
".#packages.${system}.atuinLatest" \
".#packages.${system}.cliampLatest" \
".#packages.${system}.musicpresence" \
".#packages.${system}.vintage-story" \
".#packages.${system}.swaytreesave" \
+24
View File
@@ -0,0 +1,24 @@
final: prev: {
cliampLatest = prev.cliamp.overrideAttrs (oldAttrs: rec {
version = "2.0.1";
src = prev.fetchFromGitHub {
owner = "bjarneo";
repo = "cliamp";
tag = "v${version}";
sha256 = "sha256-r7MrrcVt+/f+iPozn9jaczJmpPv431wAoW8LvHKBtB8=";
};
vendorHash = "sha256-rtwUWbft5XGEbuBCn0OMCn4TS5Ul+UXJNIqNOzXfU+M=";
buildInputs = with prev; [
libogg
libvorbis
flac
mpg123
]
++ lib.optionals stdenv.hostPlatform.isLinux [
alsa-lib
];
});
}
+1
View File
@@ -2,4 +2,5 @@ final: prev:
prev.lib.composeManyExtensions [
(import ./atuin.nix)
(import ./container.nix)
(import ./cliamp.nix)
] final prev
+1
View File
@@ -7,6 +7,7 @@
# any overlays we define here
atuinLatest = pkgs.atuinLatest;
containerLatest = pkgs.containerLatest;
cliampLatest = pkgs.cliampLatest;
# any packages that are added to pkgs and are inputs, we inherit them here
inherit hildibrand;