nixpkgs/pkgs/tools/audio/pnmixer/default.nix
José Romildo Malaquias e80b27f383 pnmixer: 0.7.1 -> 0.7.2
2018-01-02 16:29:16 -02:00

26 lines
737 B
Nix

{ stdenv, fetchFromGitHub, cmake, pkgconfig, gettext, alsaLib, gtk3, glib, libnotify, libX11, pcre }:
stdenv.mkDerivation rec {
name = "pnmixer-${version}";
version = "0.7.2";
src = fetchFromGitHub {
owner = "nicklan";
repo = "pnmixer";
rev = "v${version}";
sha256 = "0416pa933ddf4b7ph9zxhk5jppkk7ppcq1aqph6xsrfnka4yb148";
};
nativeBuildInputs = [ cmake pkgconfig gettext ];
buildInputs = [ alsaLib gtk3 glib libnotify libX11 pcre ];
meta = with stdenv.lib; {
homepage = https://github.com/nicklan/pnmixer;
description = "ALSA volume mixer for the system tray";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ campadrenalin romildo ];
};
}