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