stdmanpages: Use correct fdl12Plus license

See: https://gcc.gnu.org/onlinedocs/libstdc++/
This commit is contained in:
Daniel Schaefer 2019-05-24 19:51:50 +02:00
parent ad9f1beab2
commit e5f2bea31b

View file

@ -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;
};
}