📦 Add cliamp package
#12
@@ -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" \
|
||||
|
||||
@@ -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
|
||||
];
|
||||
});
|
||||
}
|
||||
@@ -2,4 +2,5 @@ final: prev:
|
||||
prev.lib.composeManyExtensions [
|
||||
(import ./atuin.nix)
|
||||
(import ./container.nix)
|
||||
(import ./cliamp.nix)
|
||||
] final prev
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user