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

fix licenCe typos

+5 -5
+1 -1
pkgs/tools/graphics/nifskope/default.nix
··· 46 46 description = "A tool for analyzing and editing NetImmerse/Gamebryo '*.nif' files"; 47 47 maintainers = [ stdenv.lib.maintainers.eelco ]; 48 48 platforms = stdenv.lib.platforms.linux; 49 - licence = stdenv.lib.licenses.bsd3; 49 + license = stdenv.lib.licenses.bsd3; 50 50 }; 51 51 }
+4 -4
pkgs/tools/misc/tmpwatch/default.nix
··· 8 8 sha256 = "1m5859ngwx61l1i4s6fja2avf1hyv6w170by273w8nsin89825lk"; 9 9 }; 10 10 11 - meta = { 11 + meta = with stdenv.lib; { 12 12 homepage = https://fedorahosted.org/tmpwatch/; 13 13 description = "The tmpwatch utility recursively searches through specified directories and removes files which have not been accessed in a specified period of time."; 14 - licence = "GPLv2"; 15 - maintainers = with stdenv.lib.maintainers; [ vlstill ]; 16 - platforms = stdenv.lib.platforms.unix; 14 + license = licenses.gpl2; 15 + maintainers = with maintainers; [ vlstill ]; 16 + platforms = platforms.unix; 17 17 }; 18 18 }