pw-volume: 0.4.0 -> 0.5.0, add figsoda as a maintainer

Diff: https://github.com/smasher164/pw-volume/compare/v0.4.0...v0.5.0

Changelog: https://github.com/smasher164/pw-volume/releases/tag/v0.5.0

figsoda 46a76ce3 4389f864

+6 -14
+6 -14
pkgs/tools/audio/pw-volume/default.nix
··· 1 1 { lib 2 + , rustPlatform 2 3 , fetchFromGitHub 3 - , fetchurl 4 - , rustPlatform 5 4 }: 6 5 7 6 rustPlatform.buildRustPackage rec { 8 7 pname = "pw-volume"; 9 - version = "0.4.0"; 8 + version = "0.5.0"; 10 9 11 10 src = fetchFromGitHub { 12 11 owner = "smasher164"; 13 12 repo = pname; 14 13 rev = "v${version}"; 15 - sha256 = "sha256-u7Ct9Kfwld/h3b6hUZdfHNuDGE4NA3MwrmgUj4g64lw="; 14 + sha256 = "sha256-r/6AAZKZgPYUGic/Dag7OT5RtH+RKgEkJVWxsO5VGZ0="; 16 15 }; 17 16 18 - cargoPatches = [ 19 - (fetchurl { 20 - # update Cargo.lock 21 - url = "https://github.com/smasher164/pw-volume/commit/be104eaaeb84def26b392cc44bb1e7b880bef0fc.patch"; 22 - sha256 = "sha256-gssRcKpqxSAvW+2kJzIAR/soIQ3xg6LDZ7OeXds4ulY="; 23 - }) 24 - ]; 25 - 26 - cargoSha256 = "sha256-Vzd5ZbbzJh2QqiOrBOszsNqLwxM+mm2lbGd5JtKZzEM="; 17 + cargoSha256 = "sha256-srwbrMBUJz/Xi+Hk2GY9oo4rcTfKl/r146YWSSx6dew="; 27 18 28 19 meta = with lib; { 29 20 description = "Basic interface to PipeWire volume controls"; 30 21 homepage = "https://github.com/smasher164/pw-volume"; 22 + changelog = "https://github.com/smasher164/pw-volume/releases/tag/v${version}"; 31 23 license = licenses.mit; 32 - maintainers = with maintainers; [ astro ]; 24 + maintainers = with maintainers; [ astro figsoda ]; 33 25 platforms = platforms.linux; 34 26 }; 35 27 }