Compare commits
3
Commits
2f16b8c56a
...
cliamp
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2fc67cffe3 | ||
|
|
c16695f5f4
|
||
|
|
7dad6a62f0
|
@@ -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" \
|
||||||
|
|||||||
@@ -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 [
|
prev.lib.composeManyExtensions [
|
||||||
(import ./atuin.nix)
|
(import ./atuin.nix)
|
||||||
(import ./container.nix)
|
(import ./container.nix)
|
||||||
|
(import ./cliamp.nix)
|
||||||
] final prev
|
] final prev
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user