alsaUtils: Add license

This commit is contained in:
Markus Kowalewski 2018-08-14 13:32:42 +02:00
parent 2845b63ff4
commit c6ffdedc53
No known key found for this signature in database
GPG Key ID: 502A248E3FB4FF48

View File

@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
installFlags = "ASOUND_STATE_DIR=$(TMPDIR)/dummy"; installFlags = "ASOUND_STATE_DIR=$(TMPDIR)/dummy";
meta = { meta = with stdenv.lib; {
homepage = http://www.alsa-project.org/; homepage = http://www.alsa-project.org/;
description = "ALSA, the Advanced Linux Sound Architecture utils"; description = "ALSA, the Advanced Linux Sound Architecture utils";
longDescription = '' longDescription = ''
@ -29,7 +29,8 @@ stdenv.mkDerivation rec {
MIDI functionality to the Linux-based operating system. MIDI functionality to the Linux-based operating system.
''; '';
platforms = stdenv.lib.platforms.linux; license = licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.AndersonTorres ]; platforms = platforms.linux;
maintainers = [ maintainers.AndersonTorres ];
}; };
} }