···41414242 meta = with lib; {4343 description = "MPlayer front-end for KDE";4444- license = with licenses; [ gpl2 lgpl2 fdl12 ];4444+ license = with licenses; [ gpl2Plus lgpl2Plus fdl12Plus ];4545 homepage = "https://kmplayer.kde.org/";4646 maintainers = with maintainers; [ sander zraexy ];4747 };
+15
pkgs/build-support/rust/lib/default.nix
···1515 else if platform.isDarwin then "macos"1616 else platform.parsed.kernel.name;17171818+ # https://doc.rust-lang.org/reference/conditional-compilation.html#target_family1919+ toTargetFamily = platform:2020+ if platform ? rustc.platform.target-family2121+ then2222+ (2323+ # Since https://github.com/rust-lang/rust/pull/840722424+ # `target-family` is a list instead of single value.2525+ let2626+ f = platform.rustc.platform.target-family;2727+ in2828+ if builtins.isList f then f else [ f ]2929+ )3030+ else lib.optional platform.isUnix "unix"3131+ ++ lib.optional platform.isWindows "windows";3232+1833 # Returns the name of the rust target, even if it is custom. Adjustments are1934 # because rust has slightly different naming conventions than we do.2035 toRustTarget = platform: let
+1-1
pkgs/data/documentation/std-man-pages/default.nix
···1919 meta = with lib; {2020 description = "GCC C++ STD manual pages";2121 homepage = "https://gcc.gnu.org/";2222- license = with licenses; [ fdl12Plus ];2222+ license = with licenses; [ fdl13Plus ];2323 platforms = platforms.unix;2424 };2525}
···12121313 nativeBuildInputs = [ autoreconfHook ];14141515- NIX_CFLAGS_COMPILE = [ "-std=c++11" ];1515+ CXXFLAGS = "-std=c++11";16161717 meta = with lib; {1818 description = "A forked version of log4cpp that has been created for the Shibboleth project";
···4747 # it's a directory, so the set of overlays from the directory, ordered lexicographically4848 let content = builtins.readDir path; in4949 map (n: import (path + ("/" + n)))5050- (builtins.filter (n: builtins.match ".*\\.nix" n != null || builtins.pathExists (path + ("/" + n + "/default.nix")))5050+ (builtins.filter5151+ (n:5252+ (builtins.match ".*\\.nix" n != null &&5353+ # ignore Emacs lock files (.#foo.nix)5454+ builtins.match "\\.#.*" n == null) ||5555+ builtins.pathExists (path + ("/" + n + "/default.nix")))5156 (builtins.attrNames content))5257 else5358 # it's a file, so the result is the contents of the file itself