2023-01-25 18:14:17 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
2023-02-28 22:02:31 +00:00
|
|
|
, fetchFromGitHub
|
2023-01-25 18:14:17 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "pw-volume";
|
2023-02-28 22:02:31 +00:00
|
|
|
version = "0.5.0";
|
2023-01-25 18:14:17 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "smasher164";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-02-28 22:02:31 +00:00
|
|
|
sha256 = "sha256-r/6AAZKZgPYUGic/Dag7OT5RtH+RKgEkJVWxsO5VGZ0=";
|
2023-01-25 18:14:17 +00:00
|
|
|
};
|
|
|
|
|
2024-07-02 09:04:59 +00:00
|
|
|
cargoHash = "sha256-srwbrMBUJz/Xi+Hk2GY9oo4rcTfKl/r146YWSSx6dew=";
|
2023-01-25 18:14:17 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Basic interface to PipeWire volume controls";
|
|
|
|
homepage = "https://github.com/smasher164/pw-volume";
|
2023-02-28 22:02:31 +00:00
|
|
|
changelog = "https://github.com/smasher164/pw-volume/releases/tag/v${version}";
|
2023-01-25 18:14:17 +00:00
|
|
|
license = licenses.mit;
|
2023-02-28 22:02:31 +00:00
|
|
|
maintainers = with maintainers; [ astro figsoda ];
|
2023-01-25 18:14:17 +00:00
|
|
|
platforms = platforms.linux;
|
2023-11-23 21:09:35 +00:00
|
|
|
mainProgram = "pw-volume";
|
2023-01-25 18:14:17 +00:00
|
|
|
};
|
|
|
|
}
|