Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17331,6 +17331,11 @@
githubId = 19433256;
name = "Radoslaw Sniezek";
};
rster2002 = {
name = "Bjørn";
github = "rster2002";
githubId = 26026518;
Comment thread
Aleksanaa marked this conversation as resolved.
};
rsynnest = {
email = "contact@rsynnest.com";
github = "rsynnest";
Expand Down
44 changes: 44 additions & 0 deletions pkgs/by-name/my/myxer/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, wrapGAppsHook
, libpulseaudio
, glib
, pango
, gtk3
}:

rustPlatform.buildRustPackage rec {
pname = "myxer";
version = "1.3.0";

src = fetchFromGitHub {
owner = "Aurailus";
repo = "myxer";
rev = version;
hash = "sha256-c5SHjnhWLp0jMdmDlupMTA0hWphub5DFY1vOI6NW8E0=";
};

cargoHash = "sha256-IH+SLIHO/wu+przH+mgOEnH9m+iAE5s/BJhh0UUHR/0=";

nativeBuildInputs = [ pkg-config wrapGAppsHook ];

buildInputs = [ libpulseaudio glib pango gtk3 ];

postInstall = ''
install -Dm644 Myxer.desktop $out/share/applications/Myxer.desktop
'';

# Currently no tests are implemented, so we avoid building the package twice
doCheck = false;

Comment thread
Aleksanaa marked this conversation as resolved.
Outdated
meta = with lib; {
description = "A modern Volume Mixer for PulseAudio";
homepage = "https://github.com/Aurailus/Myxer";
license = licenses.gpl3Only;
maintainers = with maintainers; [ erin rster2002 ];
Comment thread
Aleksanaa marked this conversation as resolved.
Outdated
mainProgram = "myxer";
platforms = platforms.linux;
};
}