Merge master into staging-next

This commit is contained in:
Frederik Rietdijk
2019-05-25 12:38:00 +02:00
381 changed files with 9647 additions and 5560 deletions
@@ -1,4 +1,4 @@
{stdenv, fetchurl}:
{ stdenv, lib, fetchurl }:
stdenv.mkDerivation rec {
name = "std-man-pages-4.4.0";
@@ -15,10 +15,10 @@ stdenv.mkDerivation rec {
cp -R * $out/share/man
'';
meta = {
description = "C++ STD manual pages";
homepage = https://gcc.gnu.org/;
license = "GPL/LGPL";
platforms = stdenv.lib.platforms.unix;
meta = with lib; {
description = "GCC C++ STD manual pages";
homepage = "https://gcc.gnu.org/";
license = with licenses; [ fdl12Plus ];
platforms = platforms.unix;
};
}