lol

Merge pull request #199244 from markuskowa/fix-licenses

Fix licenses in various packages

authored by

markuskowa and committed by
GitHub
19951ca9 e2cf8ac3

+20 -9
+5
lib/licenses.nix
··· 109 109 fullName = "Apache License 2.0"; 110 110 }; 111 111 112 + bitstreamVera = { 113 + spdxId = "Bitstream-Vera"; 114 + fullName = "Bitstream Vera Font License"; 115 + }; 116 + 112 117 bola11 = { 113 118 url = "https://blitiri.com.ar/p/bola/"; 114 119 fullName = "Buena Onda License Agreement 1.1";
+2 -1
pkgs/data/fonts/arkpandora/default.nix
··· 1 - { fetchurl }: 1 + { lib, fetchurl }: 2 2 3 3 let 4 4 version = "2.04"; ··· 21 21 22 22 meta = { 23 23 description = "Font, metrically identical to Arial and Times New Roman"; 24 + license = lib.licenses.bitstreamVera; 24 25 }; 25 26 }
+2 -1
pkgs/data/fonts/dosemu-fonts/default.nix
··· 1 - { stdenv, fetchurl, bdftopcf, mkfontdir, mkfontscale }: 1 + { lib, stdenv, fetchurl, bdftopcf, mkfontdir, mkfontscale }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "dosemu-fonts"; ··· 31 31 32 32 meta = { 33 33 description = "Various fonts from the DOSEmu project"; 34 + license = lib.licenses.gpl2Only; 34 35 }; 35 36 }
+2 -1
pkgs/data/fonts/tipa/default.nix
··· 1 - { stdenv, fetchurl }: 1 + { lib, stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "tipa"; ··· 23 23 24 24 meta = { 25 25 description = "Phonetic font for TeX"; 26 + license = lib.licenses.lppl13c; 26 27 }; 27 28 } 28 29
+1
pkgs/data/icons/hicolor-icon-theme/default.nix
··· 15 15 description = "Default fallback theme used by implementations of the icon theme specification"; 16 16 homepage = "https://icon-theme.freedesktop.org/releases/"; 17 17 platforms = platforms.unix; 18 + license = licenses.gpl2Only; 18 19 }; 19 20 }
+3 -2
pkgs/data/icons/tango-icon-theme/default.nix
··· 24 24 25 25 postInstall = '''${gtk.out}/bin/gtk-update-icon-cache' "$out/share/icons/Tango" ''; 26 26 27 - meta = { 27 + meta = with lib; { 28 28 description = "A basic set of icons"; 29 29 homepage = "http://tango.freedesktop.org/Tango_Icon_Library"; 30 - platforms = lib.platforms.linux; 30 + platforms = platforms.linux; 31 + license = licenses.publicDomain; 31 32 }; 32 33 }
+1
pkgs/data/misc/dns-root-data/default.nix
··· 32 32 meta = with lib; { 33 33 description = "DNS root data including root zone and DNSSEC key"; 34 34 maintainers = with maintainers; [ fpletz vcunat ]; 35 + license = licenses.gpl3Plus; 35 36 }; 36 37 }
+3 -3
pkgs/development/tools/database/indradb/default.nix
··· 16 16 meta = with lib; { 17 17 description = "A graph database written in rust "; 18 18 homepage = "https://github.com/indradb/indradb"; 19 - license = licenses.asl20; 19 + license = licenses.mpl20; 20 20 maintainers = with maintainers; [ happysalada ]; 21 21 platforms = platforms.unix; 22 22 }; ··· 25 25 indradb-server = rustPlatform.buildRustPackage { 26 26 pname = "indradb-server"; 27 27 version = "unstable-2021-01-05"; 28 - inherit src; 28 + inherit src meta; 29 29 30 30 cargoSha256 = "sha256-3WtiW31AkyNX7HiT/zqfNo2VSKR7Q57/wCigST066Js="; 31 31 ··· 43 43 indradb-client = rustPlatform.buildRustPackage { 44 44 pname = "indradb-client"; 45 45 version = "unstable-2021-01-05"; 46 - inherit src; 46 + inherit src meta; 47 47 48 48 cargoSha256 = "sha256-pxan6W/CEsOxv8DbbytEBuIqxWn/C4qT4ze/RnvESOM="; 49 49
+1 -1
pkgs/development/tools/misc/luarocks/luarocks-nix.nix
··· 17 17 updateScript = unstableGitUpdater { }; 18 18 }; 19 19 20 - meta = { 20 + meta = old.meta // { 21 21 mainProgram = "luarocks"; 22 22 }; 23 23 })