ponymix: init at 4
This commit is contained in:
parent
4d3434da94
commit
242c0d3e18
2 changed files with 23 additions and 0 deletions
21
pkgs/applications/audio/ponymix/default.nix
Normal file
21
pkgs/applications/audio/ponymix/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, fetchurl, libpulseaudio, libnotify, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ponymix-${version}";
|
||||
version = "4";
|
||||
src = fetchurl {
|
||||
url = "http://code.falconindy.com/archive/ponymix/${name}.tar.xz";
|
||||
sha256 = "008pk3sqc8955k2f502z1syzv43a4q0yk5ws69lgpqfsy1mzki2d";
|
||||
};
|
||||
|
||||
buildInputs = [ libpulseaudio libnotify ];
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
|
||||
postPatch = ''substituteInPlace Makefile --replace "\$(DESTDIR)/usr" "$out"'';
|
||||
|
||||
meta = {
|
||||
description = "CLI PulseAudio Volume Control";
|
||||
homepage = "http://github.com/falconindy/ponymix";
|
||||
license = "mit";
|
||||
};
|
||||
}
|
|
@ -12362,6 +12362,8 @@ let
|
|||
|
||||
pond = callPackage ../applications/networking/pond { goPackages = go14Packages; };
|
||||
|
||||
ponymix = callPackage ../applications/audio/ponymix { };
|
||||
|
||||
potrace = callPackage ../applications/graphics/potrace {};
|
||||
|
||||
posterazor = callPackage ../applications/misc/posterazor { };
|
||||
|
|
Loading…
Reference in a new issue