nixpkgs/pkgs/applications/audio/myxer/default.nix

39 lines
846 B
Nix
Raw Normal View History

2021-04-08 18:41:57 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, libpulseaudio
, glib
, pango
, gtk3
}:
rustPlatform.buildRustPackage rec {
pname = "myxer";
2021-04-09 05:58:08 +00:00
version = "1.2.0";
2021-04-08 18:41:57 +00:00
src = fetchFromGitHub {
owner = "Aurailus";
repo = pname;
rev = version;
2021-04-09 05:58:08 +00:00
sha256 = "10m5qkys96n4v6qiffdiy0w660yq7b5sa70ww2zskc8d0gbmxp6x";
2021-04-08 18:41:57 +00:00
};
2021-04-09 05:58:08 +00:00
cargoSha256 = "0nsscdjl5fh24sg87vdmijjmlihc0zk0p3vac701v60xlz55qipn";
2021-04-08 18:41:57 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libpulseaudio glib pango gtk3 ];
# Currently no tests are implemented, so we avoid building the package twice
doCheck = false;
meta = with lib; {
description = "A modern Volume Mixer for PulseAudio";
homepage = "https://github.com/Aurailus/Myxer";
license = licenses.gpl3Only;
maintainers = with maintainers; [ erin ];
platforms = platforms.linux;
};
}