tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
qjackctl: adopt it and tidy up the metadata
Cillian de Róiste
10 years ago
506f511a
0cfd2267
+4
-3
1 changed file
expand all
collapse all
unified
split
pkgs
applications
audio
qjackctl
default.nix
+4
-3
pkgs/applications/audio/qjackctl/default.nix
···
15
15
16
16
configureFlags = "--enable-jack-version";
17
17
18
18
-
meta = {
18
18
+
meta = with stdenv.lib; {
19
19
description = "A Qt application to control the JACK sound server daemon";
20
20
homepage = http://qjackctl.sourceforge.net/;
21
21
-
license = "GPL";
22
22
-
platforms = stdenv.lib.platforms.linux;
21
21
+
license = licenses.gpl2Plus;
22
22
+
maintainers = [ maintainers.goibhniu ];
23
23
+
platforms = platforms.linux;
23
24
};
24
25
}