mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
pamix: init at 1.4.1
This commit is contained in:
parent
6b20d5b75e
commit
b020675453
26
pkgs/applications/audio/pamix/default.nix
Normal file
26
pkgs/applications/audio/pamix/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, fetchFromGitHub
|
||||
, autoreconfHook, autoconf-archive, pkgconfig
|
||||
, libpulseaudio, ncurses }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pamix-${version}";
|
||||
version = "1.4.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "patroclos";
|
||||
repo = "pamix";
|
||||
rev = "v${version}";
|
||||
sha256 = "06pxpalzynb8z7qwhkfs7sj823k9chdmpyj40rp27f2znf2qga19";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook autoconf-archive pkgconfig ];
|
||||
buildInputs = [ libpulseaudio ncurses ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Pulseaudio terminal mixer";
|
||||
homepage = https://github.com/patroclos/PAmix;
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ ericsagnes ];
|
||||
};
|
||||
}
|
@ -14226,6 +14226,8 @@ in
|
||||
|
||||
osmo = callPackage ../applications/office/osmo { };
|
||||
|
||||
pamix = callPackage ../applications/audio/pamix { };
|
||||
|
||||
pamixer = callPackage ../applications/audio/pamixer { };
|
||||
|
||||
pan = callPackage ../applications/networking/newsreaders/pan {
|
||||
|
Loading…
Reference in New Issue
Block a user