Compare commits

4 Commits
Author SHA1 Message Date
wymiller 1b5df8dea8 Merge pull request '📦 Add cliamp package' (#12) from cliamp into master
Publish packages to Attic / publish (push) Failing after 8m46s
Reviewed-on: #12
2026-09-02 12:42:27 -05:00
wymiller 2fc67cffe3 Merge branch 'master' into cliamp 2026-09-02 12:42:18 -05:00
wymiller c16695f5f4 mod: ci stuff 2026-09-02 13:42:59 -04:00
wymiller 7dad6a62f0 add: cliamp build target 2026-09-02 13:41:37 -04: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 \ NIXPKGS_ALLOW_UNFREE=1 nix build --impure --accept-flake-config --no-link --print-out-paths -L \
".#packages.${system}.atuinLatest" \ ".#packages.${system}.atuinLatest" \
".#packages.${system}.cliampLatest" \
".#packages.${system}.musicpresence" \ ".#packages.${system}.musicpresence" \
".#packages.${system}.vintage-story" \ ".#packages.${system}.vintage-story" \
".#packages.${system}.swaytreesave" \ ".#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 [ prev.lib.composeManyExtensions [
(import ./atuin.nix) (import ./atuin.nix)
(import ./container.nix) (import ./container.nix)
(import ./cliamp.nix)
] final prev ] final prev
+1
View File
@@ -7,6 +7,7 @@
# any overlays we define here # any overlays we define here
atuinLatest = pkgs.atuinLatest; atuinLatest = pkgs.atuinLatest;
containerLatest = pkgs.containerLatest; containerLatest = pkgs.containerLatest;
cliampLatest = pkgs.cliampLatest;
# any packages that are added to pkgs and are inputs, we inherit them here # any packages that are added to pkgs and are inputs, we inherit them here
inherit hildibrand; inherit hildibrand;