tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
aumix: remove ? null from inputs, cleanup meta
Sandro Jäckel
4 years ago
e3fe5e93
0a5f3654
+6
-9
1 changed file
expand all
collapse all
unified
split
pkgs
applications
audio
aumix
default.nix
+6
-9
pkgs/applications/audio/aumix/default.nix
···
4
, gettext
5
, ncurses
6
, gtkGUI ? false
7
-
, pkg-config ? null
8
-
, gtk2 ? null
9
}:
10
-
11
-
assert gtkGUI -> pkg-config != null && gtk2 != null;
12
13
stdenv.mkDerivation rec {
14
pname = "aumix";
···
22
buildInputs = [ gettext ncurses ]
23
++ lib.optionals gtkGUI [ pkg-config gtk2 ];
24
25
-
meta = {
26
description = "Audio mixer for X and the console";
27
longDescription = ''
28
Aumix adjusts an audio mixer from X, the console, a terminal,
29
the command line or a script.
30
'';
31
homepage = "http://www.jpj.net/~trevor/aumix.html";
32
-
license = lib.licenses.gpl2Plus;
33
-
34
-
maintainers = [ ];
35
-
platforms = lib.platforms.linux;
36
};
37
}
···
4
, gettext
5
, ncurses
6
, gtkGUI ? false
7
+
, pkg-config
8
+
, gtk2
9
}:
0
0
10
11
stdenv.mkDerivation rec {
12
pname = "aumix";
···
20
buildInputs = [ gettext ncurses ]
21
++ lib.optionals gtkGUI [ pkg-config gtk2 ];
22
23
+
meta = with lib; {
24
description = "Audio mixer for X and the console";
25
longDescription = ''
26
Aumix adjusts an audio mixer from X, the console, a terminal,
27
the command line or a script.
28
'';
29
homepage = "http://www.jpj.net/~trevor/aumix.html";
30
+
license = licenses.gpl2Plus;
31
+
maintainers = with maintainers; [ ];
32
+
platforms = platforms.linux;
0
33
};
34
}