nixpkgs/pkgs/tools/audio/pnmixer/default.nix

26 lines
737 B
Nix
Raw Normal View History

2018-01-02 21:29:16 +03:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, gettext, alsaLib, gtk3, glib, libnotify, libX11, pcre }:
2014-08-24 05:47:29 +04:00
stdenv.mkDerivation rec {
2016-04-30 02:11:15 +03:00
name = "pnmixer-${version}";
2018-01-02 21:29:16 +03:00
version = "0.7.2";
2014-08-24 05:47:29 +04:00
2016-04-30 02:11:15 +03:00
src = fetchFromGitHub {
owner = "nicklan";
repo = "pnmixer";
2016-09-19 12:42:23 +03:00
rev = "v${version}";
2018-01-02 21:29:16 +03:00
sha256 = "0416pa933ddf4b7ph9zxhk5jppkk7ppcq1aqph6xsrfnka4yb148";
2014-08-24 05:47:29 +04:00
};
2017-03-06 13:15:29 +03:00
nativeBuildInputs = [ cmake pkgconfig gettext ];
2016-04-30 02:11:15 +03:00
2018-01-02 21:29:16 +03:00
buildInputs = [ alsaLib gtk3 glib libnotify libX11 pcre ];
2014-08-24 05:47:29 +04:00
meta = with stdenv.lib; {
2016-04-30 02:11:15 +03:00
homepage = https://github.com/nicklan/pnmixer;
2017-05-26 14:51:26 +03:00
description = "ALSA volume mixer for the system tray";
2014-08-24 05:47:29 +04:00
license = licenses.gpl3;
platforms = platforms.linux;
2016-09-19 12:42:23 +03:00
maintainers = with maintainers; [ campadrenalin romildo ];
2014-08-24 05:47:29 +04:00
};
}