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

31 lines
750 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
, pkg-config, cmake
2016-09-08 02:34:50 +00:00
, libpulseaudio, ncurses }:
stdenv.mkDerivation rec {
pname = "pamix";
2018-02-24 02:22:13 +00:00
version = "1.6";
2016-09-08 02:34:50 +00:00
src = fetchFromGitHub {
owner = "patroclos";
repo = "pamix";
2016-11-27 02:29:03 +00:00
rev = version;
2018-02-24 02:22:13 +00:00
sha256 = "1d44ggnwkf2gff62959pj45v3a2k091q8v154wc5pmzamam458wp";
2016-09-08 02:34:50 +00:00
};
2018-02-24 02:22:13 +00:00
preConfigure = ''
substituteInPlace CMakeLists.txt --replace "/etc" "$out/etc/xdg"
'';
nativeBuildInputs = [ cmake pkg-config ];
2016-09-08 02:34:50 +00:00
buildInputs = [ libpulseaudio ncurses ];
meta = with lib; {
2016-09-08 02:34:50 +00:00
description = "Pulseaudio terminal mixer";
homepage = "https://github.com/patroclos/PAmix";
2016-09-08 02:34:50 +00:00
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ ericsagnes ];
};
}