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

26 lines
723 B
Nix
Raw Normal View History

2017-03-06 10:15:29 +00:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, gettext, alsaLib, gtk3, glib, libnotify, libX11 }:
2014-08-24 02:47:29 +01:00
stdenv.mkDerivation rec {
2016-04-30 00:11:15 +01:00
name = "pnmixer-${version}";
2017-03-06 10:15:29 +00:00
version = "0.7.1-rc1";
2014-08-24 02:47:29 +01:00
2016-04-30 00:11:15 +01:00
src = fetchFromGitHub {
owner = "nicklan";
repo = "pnmixer";
2016-09-19 10:42:23 +01:00
rev = "v${version}";
2017-03-06 10:15:29 +00:00
sha256 = "0ns7s1jsc7fc3fvs9m3xwbv1fk1410cqc5w1cmia1mlzy94r3r6p";
2014-08-24 02:47:29 +01:00
};
2017-03-06 10:15:29 +00:00
nativeBuildInputs = [ cmake pkgconfig gettext ];
2016-04-30 00:11:15 +01:00
2017-03-06 10:15:29 +00:00
buildInputs = [ alsaLib gtk3 glib libnotify libX11 ];
2014-08-24 02:47:29 +01:00
meta = with stdenv.lib; {
2016-04-30 00:11:15 +01:00
homepage = https://github.com/nicklan/pnmixer;
2014-08-25 09:04:49 +01:00
description = "ALSA mixer for the system tray";
2014-08-24 02:47:29 +01:00
license = licenses.gpl3;
platforms = platforms.linux;
2016-09-19 10:42:23 +01:00
maintainers = with maintainers; [ campadrenalin romildo ];
2014-08-24 02:47:29 +01:00
};
}