aumix: remove ? null from inputs, cleanup meta

This commit is contained in:
Sandro Jäckel 2021-11-09 10:19:27 +01:00
parent 0a5f365446
commit e3fe5e9328
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -4,12 +4,10 @@
, gettext
, ncurses
, gtkGUI ? false
, pkg-config ? null
, gtk2 ? null
, pkg-config
, gtk2
}:
assert gtkGUI -> pkg-config != null && gtk2 != null;
stdenv.mkDerivation rec {
pname = "aumix";
version = "2.9.1";
@ -22,16 +20,15 @@ stdenv.mkDerivation rec {
buildInputs = [ gettext ncurses ]
++ lib.optionals gtkGUI [ pkg-config gtk2 ];
meta = {
meta = with lib; {
description = "Audio mixer for X and the console";
longDescription = ''
Aumix adjusts an audio mixer from X, the console, a terminal,
the command line or a script.
'';
homepage = "http://www.jpj.net/~trevor/aumix.html";
license = lib.licenses.gpl2Plus;
maintainers = [ ];
platforms = lib.platforms.linux;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ ];
platforms = platforms.linux;
};
}