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
4
, gettext
5
5
, ncurses
6
6
, gtkGUI ? false
7
7
-
, pkg-config ? null
8
8
-
, gtk2 ? null
7
7
+
, pkg-config
8
8
+
, gtk2
9
9
}:
10
10
-
11
11
-
assert gtkGUI -> pkg-config != null && gtk2 != null;
12
10
13
11
stdenv.mkDerivation rec {
14
12
pname = "aumix";
···
22
20
buildInputs = [ gettext ncurses ]
23
21
++ lib.optionals gtkGUI [ pkg-config gtk2 ];
24
22
25
25
-
meta = {
23
23
+
meta = with lib; {
26
24
description = "Audio mixer for X and the console";
27
25
longDescription = ''
28
26
Aumix adjusts an audio mixer from X, the console, a terminal,
29
27
the command line or a script.
30
28
'';
31
29
homepage = "http://www.jpj.net/~trevor/aumix.html";
32
32
-
license = lib.licenses.gpl2Plus;
33
33
-
34
34
-
maintainers = [ ];
35
35
-
platforms = lib.platforms.linux;
30
30
+
license = licenses.gpl2Plus;
31
31
+
maintainers = with maintainers; [ ];
32
32
+
platforms = platforms.linux;
36
33
};
37
34
}