add: cliamp build target

This commit is contained in:
2026-09-02 13:41:37 -04:00
parent 563be1867c
commit 7dad6a62f0
3 changed files with 26 additions and 0 deletions
+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;