Merge pull request #330880 from JohnRTitor/pwvucontrol

pwvucontrol: 0.4.2 -> 0.4.5
This commit is contained in:
Nick Cao 2024-07-29 19:43:59 -04:00 committed by GitHub
commit 09a84a710b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 315 additions and 266 deletions

File diff suppressed because it is too large Load Diff

View File

@ -32,21 +32,21 @@ let
};
});
in
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "pwvucontrol";
version = "0.4.2";
version = "0.4.5";
src = fetchFromGitHub {
owner = "saivert";
repo = "pwvucontrol";
rev = version;
hash = "sha256-cWNWdCMk9hF8Nzq2UFBEKSx1zS8JlplMG7B5gv7BaZA=";
rev = "refs/tags/${finalAttrs.version}";
hash = "sha256-s4sop1qmqPVOGX7erRfClUUcixNhi+wUY5MXSmv+zVk=";
};
cargoDeps = rustPlatform.importCargoLock {
lockFile = ./Cargo.lock;
outputHashes = {
"wireplumber-0.1.0" = "sha256-r3p4OpmMgiFgjn1Fj4LeMOhx6R2UWollIdJRy/0kiNM=";
"wireplumber-0.1.0" = "sha256-ocagwmjyhfx6n/9xKxF2vhylqy2HunKQRx3eMo6m/l4=";
};
};
@ -73,12 +73,16 @@ stdenv.mkDerivation rec {
wireplumber_0_4
];
meta = with lib; {
meta = {
description = "Pipewire Volume Control";
homepage = "https://github.com/saivert/pwvucontrol";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ figsoda Guanran928 ];
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [
figsoda
Guanran928
johnrtitor
];
mainProgram = "pwvucontrol";
platforms = platforms.linux;
platforms = lib.platforms.linux;
};
}
})