nixpkgs/pkgs/by-name/si/sink-rotate/package.nix
2024-09-13 11:47:46 +02:00

42 lines
935 B
Nix

{ lib
, rustPlatform
, fetchFromGitHub
, pipewire
, wireplumber
, makeWrapper
}:
let
version = "2.2.0";
in
rustPlatform.buildRustPackage {
pname = "sink-rotate";
inherit version;
src = fetchFromGitHub {
owner = "mightyiam";
repo = "sink-rotate";
rev = "v${version}";
hash = "sha256-ZHbisG9pdctkwfD1S3kxMZhBqPw0Ni5Q9qQG4RssnSw=";
};
cargoHash = "sha256-TWuyU1+F3zEcFFd8ZeZmL3IvpKLLv3zimZ2WFVYFqyo=";
nativeBuildInputs = [ makeWrapper ];
postFixup = ''
wrapProgram $out/bin/sink-rotate \
--prefix PATH : ${pipewire}/bin/pw-dump \
--prefix PATH : ${wireplumber}/bin/wpctl
'';
meta = with lib; {
description = "Command that rotates the default PipeWire audio sink";
homepage = "https://github.com/mightyiam/sink-rotate";
license = licenses.mit;
maintainers = with maintainers; [ mightyiam ];
mainProgram = "sink-rotate";
platforms = platforms.linux;
};
}