Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #46550 from markuskowa/licenses-16

Add licenses

authored by

xeji and committed by
GitHub
c016e7f9 2164e39e

+39 -22
+1 -1
pkgs/tools/backup/dar/default.nix
··· 33 meta = { 34 homepage = http://dar.linux.free.fr; 35 description = "Disk ARchiver, allows backing up files into indexed archives"; 36 - maintainers = with maintainers; [ ]; 37 platforms = platforms.unix; 38 }; 39 }
··· 33 meta = { 34 homepage = http://dar.linux.free.fr; 35 description = "Disk ARchiver, allows backing up files into indexed archives"; 36 + license = licenses.gpl2; 37 platforms = platforms.unix; 38 }; 39 }
+1
pkgs/tools/graphics/cfdg/default.nix
··· 27 maintainers = with maintainers; [ raskin ]; 28 platforms = platforms.linux; 29 homepage = https://contextfreeart.org/; 30 downloadPage = "https://contextfreeart.org/mediawiki/index.php/Download_page"; 31 }; 32 }
··· 27 maintainers = with maintainers; [ raskin ]; 28 platforms = platforms.linux; 29 homepage = https://contextfreeart.org/; 30 + license = licenses.gpl2; 31 downloadPage = "https://contextfreeart.org/mediawiki/index.php/Download_page"; 32 }; 33 }
+5 -3
pkgs/tools/graphics/cuneiform/default.nix
··· 24 25 nativeBuildInputs = [ cmake ]; 26 27 - meta = { 28 description = "Multi-language OCR system"; 29 - platforms = stdenv.lib.platforms.linux; 30 - maintainers = with stdenv.lib.maintainers; [raskin]; 31 }; 32 }
··· 24 25 nativeBuildInputs = [ cmake ]; 26 27 + meta = with stdenv.lib; { 28 description = "Multi-language OCR system"; 29 + homepage = https://launchpad.net/cuneiform-linux; 30 + license = licenses.bsd3; 31 + platforms = platforms.linux; 32 + maintainers = [ maintainers.raskin ]; 33 }; 34 }
+3 -3
pkgs/tools/graphics/editres/default.nix
··· 15 16 hardeningDisable = [ "format" ]; 17 18 - meta = { 19 homepage = https://cgit.freedesktop.org/xorg/app/editres/; 20 description = "A dynamic resource editor for X Toolkit applications"; 21 - 22 - platforms = stdenv.lib.platforms.linux; 23 }; 24 }
··· 15 16 hardeningDisable = [ "format" ]; 17 18 + meta = with stdenv.lib; { 19 homepage = https://cgit.freedesktop.org/xorg/app/editres/; 20 description = "A dynamic resource editor for X Toolkit applications"; 21 + license = licenses.mit; 22 + platforms = platforms.linux; 23 }; 24 }
+4 -3
pkgs/tools/graphics/exif/default.nix
··· 11 nativeBuildInputs = [ pkgconfig ]; 12 buildInputs = [ libexif popt libintl ]; 13 14 - meta = { 15 - homepage = http://libexif.sourceforge.net/; 16 description = "A utility to read and manipulate EXIF data in digital photographs"; 17 - platforms = stdenv.lib.platforms.unix; 18 }; 19 }
··· 11 nativeBuildInputs = [ pkgconfig ]; 12 buildInputs = [ libexif popt libintl ]; 13 14 + meta = with stdenv.lib; { 15 + homepage = https://libexif.github.io; 16 description = "A utility to read and manipulate EXIF data in digital photographs"; 17 + platforms = platforms.unix; 18 + license = licenses.lgpl21; 19 }; 20 }
+1
pkgs/tools/graphics/qrencode/default.nix
··· 15 homepage = https://fukuchi.org/works/qrencode/; 16 description = "QR code encoder"; 17 platforms = platforms.all; 18 maintainers = with maintainers; [ yegortimoshenko ]; 19 }; 20 }
··· 15 homepage = https://fukuchi.org/works/qrencode/; 16 description = "QR code encoder"; 17 platforms = platforms.all; 18 + license = licenses.lgpl21Plus; 19 maintainers = with maintainers; [ yegortimoshenko ]; 20 }; 21 }
+4 -1
pkgs/tools/misc/cloud-utils/default.nix
··· 30 31 dontBuild = true; 32 33 - meta.platforms = stdenv.lib.platforms.unix; 34 }
··· 30 31 dontBuild = true; 32 33 + meta = with stdenv.lib; { 34 + platforms = platforms.unix; 35 + license = licenses.gpl3; 36 + }; 37 }
+1
pkgs/tools/misc/desktop-file-utils/default.nix
··· 17 homepage = http://www.freedesktop.org/wiki/Software/desktop-file-utils; 18 description = "Command line utilities for working with .desktop files"; 19 platforms = platforms.linux ++ platforms.darwin; 20 }; 21 }
··· 17 homepage = http://www.freedesktop.org/wiki/Software/desktop-file-utils; 18 description = "Command line utilities for working with .desktop files"; 19 platforms = platforms.linux ++ platforms.darwin; 20 + license = licenses.gpl2; 21 }; 22 }
+3 -2
pkgs/tools/misc/ent/default.nix
··· 21 cp ent $out/bin/ 22 ''; 23 24 - meta = { 25 description = "Pseudorandom Number Sequence Test Program"; 26 homepage = http://www.fourmilab.ch/random/; 27 - platforms = stdenv.lib.platforms.all; 28 }; 29 }
··· 21 cp ent $out/bin/ 22 ''; 23 24 + meta = with stdenv.lib; { 25 description = "Pseudorandom Number Sequence Test Program"; 26 homepage = http://www.fourmilab.ch/random/; 27 + platforms = platforms.all; 28 + license = licenses.publicDomain; 29 }; 30 }
+1
pkgs/tools/misc/kt/default.nix
··· 18 homepage = https://github.com/fgeller/kt; 19 maintainers = with maintainers; [ utdemir ]; 20 platforms = with platforms; unix; 21 }; 22 }
··· 18 homepage = https://github.com/fgeller/kt; 19 maintainers = with maintainers; [ utdemir ]; 20 platforms = with platforms; unix; 21 + license = licenses.mit; 22 }; 23 }
+4 -2
pkgs/tools/misc/mdbtools/default.nix
··· 15 sed -e 's@static \(GHashTable [*]mdb_backends;\)@\1@' -i src/libmdb/backend.c 16 ''; 17 18 - meta = { 19 description = ".mdb (MS Access) format tools"; 20 - platforms = stdenv.lib.platforms.unix; 21 }; 22 }
··· 15 sed -e 's@static \(GHashTable [*]mdb_backends;\)@\1@' -i src/libmdb/backend.c 16 ''; 17 18 + meta = with stdenv.lib; { 19 description = ".mdb (MS Access) format tools"; 20 + homepage = http://mdbtools.sourceforge.net; 21 + platforms = platforms.unix; 22 + license = with licenses; [ gpl2 lgpl2 ]; 23 }; 24 }
+4 -2
pkgs/tools/misc/mdbtools/git.nix
··· 26 sed -e 's@static \(GHashTable [*]mdb_backends;\)@\1@' -i src/libmdb/backend.c 27 ''; 28 29 - meta = { 30 description = ".mdb (MS Access) format tools"; 31 - platforms = stdenv.lib.platforms.linux; 32 }; 33 }
··· 26 sed -e 's@static \(GHashTable [*]mdb_backends;\)@\1@' -i src/libmdb/backend.c 27 ''; 28 29 + meta = with stdenv.lib; { 30 description = ".mdb (MS Access) format tools"; 31 + homepage = http://mdbtools.sourceforge.net; 32 + platforms = platforms.linux; 33 + license = with licenses; [ gpl2 lgpl2 ]; 34 }; 35 }
+4 -3
pkgs/tools/misc/rkflashtool/default.nix
··· 24 cp rkunpack rkcrc rkflashtool rkparameters rkparametersblock rkunsign rkmisc $out/bin 25 ''; 26 27 - meta = { 28 homepage = https://sourceforge.net/projects/rkflashtool/; 29 description = "Tools for flashing Rockchip devices"; 30 - platforms = stdenv.lib.platforms.linux; 31 - maintainers = [ stdenv.lib.maintainers.viric ]; 32 }; 33 }
··· 24 cp rkunpack rkcrc rkflashtool rkparameters rkparametersblock rkunsign rkmisc $out/bin 25 ''; 26 27 + meta = with stdenv.lib; { 28 homepage = https://sourceforge.net/projects/rkflashtool/; 29 description = "Tools for flashing Rockchip devices"; 30 + platforms = platforms.linux; 31 + maintainers = [ maintainers.viric ]; 32 + license = licenses.bsd2; 33 }; 34 }
+3 -2
pkgs/tools/misc/xvfb-run/default.nix
··· 20 --prefix PATH : ${stdenv.lib.makeBinPath [ getopt xorgserver xauth which utillinux gawk coreutils ]} 21 ''; 22 23 - meta = { 24 - platforms = stdenv.lib.platforms.linux; 25 }; 26 }
··· 20 --prefix PATH : ${stdenv.lib.makeBinPath [ getopt xorgserver xauth which utillinux gawk coreutils ]} 21 ''; 22 23 + meta = with stdenv.lib; { 24 + platforms = platforms.linux; 25 + license = licenses.gpl2; 26 }; 27 }