ieda: init at 0-unstable-2024-10-11 (#338769)
[NixPkgs.git] / pkgs / by-name / po / ponymix / package.nix
blobc3072757a57e6e36a6da267e1f09a803553497e6
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   libpulseaudio,
6   libnotify,
7   pkg-config,
8 }:
10 stdenv.mkDerivation rec {
11   pname = "ponymix";
12   version = "5";
14   src = fetchFromGitHub {
15     owner = "falconindy";
16     repo = "ponymix";
17     rev = version;
18     sha256 = "08yp7fprmzm6px5yx2rvzri0l60bra5h59l26pn0k071a37ks1rb";
19   };
21   buildInputs = [
22     libpulseaudio
23     libnotify
24   ];
25   nativeBuildInputs = [ pkg-config ];
27   postPatch = ''substituteInPlace Makefile --replace "\$(DESTDIR)/usr" "$out"'';
29   meta = with lib; {
30     description = "CLI PulseAudio Volume Control";
31     homepage = "https://github.com/falconindy/ponymix";
32     mainProgram = "ponymix";
33     license = licenses.mit;
34     platforms = platforms.linux;
35     maintainers = with maintainers; [ ericsagnes ];
36   };