46a76ce36c
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
27 lines
716 B
Nix
27 lines
716 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "pw-volume";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "smasher164";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-r/6AAZKZgPYUGic/Dag7OT5RtH+RKgEkJVWxsO5VGZ0=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-srwbrMBUJz/Xi+Hk2GY9oo4rcTfKl/r146YWSSx6dew=";
|
|
|
|
meta = with lib; {
|
|
description = "Basic interface to PipeWire volume controls";
|
|
homepage = "https://github.com/smasher164/pw-volume";
|
|
changelog = "https://github.com/smasher164/pw-volume/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ astro figsoda ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|