alsa-utils: 1.2.13 → 1.2.14; cleanup & precise licence info (#428312)

authored by Yohann Boniface and committed by GitHub 542fb649 16d0bfab

+15 -8
+15 -8
pkgs/by-name/al/alsa-utils/package.nix
··· 7 7 alsa-plugins, 8 8 gettext, 9 9 makeWrapper, 10 + pkg-config, 10 11 ncurses, 11 12 libsamplerate, 12 13 pciutils, ··· 28 29 paths = map (path: "${path}/lib/alsa-lib") plugin-packages; 29 30 }; 30 31 in 31 - stdenv.mkDerivation rec { 32 + stdenv.mkDerivation (finalAttrs: { 32 33 pname = "alsa-utils"; 33 - version = "1.2.13"; 34 + version = "1.2.14"; 34 35 35 36 src = fetchurl { 36 - url = "mirror://alsa/utils/alsa-utils-${version}.tar.bz2"; 37 - hash = "sha256-FwKmsc35uj6ZbsvB3c+RceaAj1lh1QPQ8n6A7hYvHao="; 37 + url = "mirror://alsa/utils/alsa-utils-${finalAttrs.version}.tar.bz2"; 38 + hash = "sha256-B5THTTP+2UPnxQYJwTCJ5AkxK2xAPWromE/EKcCWB0E="; 38 39 }; 39 40 40 41 nativeBuildInputs = [ 41 42 gettext 42 43 makeWrapper 44 + pkg-config 43 45 ]; 44 46 buildInputs = [ 45 47 alsa-lib ··· 77 79 url = "https://www.alsa-project.org/files/pub/utils/"; 78 80 }; 79 81 80 - meta = with lib; { 82 + meta = { 81 83 homepage = "http://www.alsa-project.org/"; 82 84 description = "ALSA, the Advanced Linux Sound Architecture utils"; 83 85 longDescription = '' ··· 85 87 MIDI functionality to the Linux-based operating system. 86 88 ''; 87 89 88 - license = licenses.gpl2; 89 - platforms = platforms.linux; 90 + license = with lib.licenses; [ 91 + gpl2Plus 92 + gpl2Only # alsactl (init_{parse,sysdeps,sysfs,utils_{run,string}}.c, rest GPL 2.0+) 93 + lgpl21Plus # alsaucm 94 + ]; 95 + 96 + platforms = lib.platforms.linux; 90 97 maintainers = [ ]; 91 98 }; 92 - } 99 + })