mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 12:44:20 +00:00
Merge pull request #212646 from astro/pw-volume
pw-volume: init at 0.4.0
This commit is contained in:
commit
f20d4f7010
35
pkgs/tools/audio/pw-volume/default.nix
Normal file
35
pkgs/tools/audio/pw-volume/default.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, fetchurl
|
||||||
|
, rustPlatform
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "pw-volume";
|
||||||
|
version = "0.4.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "smasher164";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-u7Ct9Kfwld/h3b6hUZdfHNuDGE4NA3MwrmgUj4g64lw=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoPatches = [
|
||||||
|
(fetchurl {
|
||||||
|
# update Cargo.lock
|
||||||
|
url = "https://github.com/smasher164/pw-volume/commit/be104eaaeb84def26b392cc44bb1e7b880bef0fc.patch";
|
||||||
|
sha256 = "sha256-gssRcKpqxSAvW+2kJzIAR/soIQ3xg6LDZ7OeXds4ulY=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
cargoSha256 = "sha256-Vzd5ZbbzJh2QqiOrBOszsNqLwxM+mm2lbGd5JtKZzEM=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Basic interface to PipeWire volume controls";
|
||||||
|
homepage = "https://github.com/smasher164/pw-volume";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ astro ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -16524,6 +16524,8 @@ with pkgs;
|
|||||||
pipewire_0_2 = callPackage ../development/libraries/pipewire/0.2.nix {};
|
pipewire_0_2 = callPackage ../development/libraries/pipewire/0.2.nix {};
|
||||||
wireplumber = callPackage ../development/libraries/pipewire/wireplumber.nix {};
|
wireplumber = callPackage ../development/libraries/pipewire/wireplumber.nix {};
|
||||||
|
|
||||||
|
pw-volume = callPackage ../tools/audio/pw-volume {};
|
||||||
|
|
||||||
pyradio = callPackage ../applications/audio/pyradio {};
|
pyradio = callPackage ../applications/audio/pyradio {};
|
||||||
|
|
||||||
racket = callPackage ../development/interpreters/racket {
|
racket = callPackage ../development/interpreters/racket {
|
||||||
|
Loading…
Reference in New Issue
Block a user