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

31 lines
758 B
Nix
Raw Normal View History

2016-09-08 02:34:50 +00:00
{ stdenv, fetchFromGitHub
2018-02-24 02:22:13 +00:00
, pkgconfig, cmake
2016-09-08 02:34:50 +00:00
, libpulseaudio, ncurses }:
stdenv.mkDerivation rec {
name = "pamix-${version}";
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 pkgconfig ];
2016-09-08 02:34:50 +00:00
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 ];
};
}