qt55.qtbase: set licenses correctly
This commit is contained in:
parent
9adcd6f78c
commit
a6c9a6f5bf
2 changed files with 5 additions and 9 deletions
|
@ -48,13 +48,7 @@ let
|
||||||
|
|
||||||
enableParallelBuilding = args.enableParallelBuilding or true;
|
enableParallelBuilding = args.enableParallelBuilding or true;
|
||||||
|
|
||||||
meta = {
|
meta = self.qtbase.meta // (args.meta or {});
|
||||||
homepage = http://www.qt.io;
|
|
||||||
description = "A cross-platform application framework for C++";
|
|
||||||
license = with licenses; [ fdl13 gpl2 lgpl21 lgpl3 ];
|
|
||||||
maintainers = with maintainers; [ bbenoist qknight ttuegel ];
|
|
||||||
platforms = platforms.linux;
|
|
||||||
} // (args.meta or {});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
addPackages = self: with self;
|
addPackages = self: with self;
|
||||||
|
@ -117,4 +111,6 @@ let
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
in makeScope pkgs.newScope addPackages
|
self = makeScope pkgs.newScope addPackages;
|
||||||
|
|
||||||
|
in self
|
||||||
|
|
|
@ -243,7 +243,7 @@ stdenv.mkDerivation {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = http://www.qt.io;
|
homepage = http://www.qt.io;
|
||||||
description = "A cross-platform application framework for C++";
|
description = "A cross-platform application framework for C++";
|
||||||
license = "GPL/LGPL";
|
license = with licenses; [ fdl13 gpl2 lgpl21 lgpl3 ];
|
||||||
maintainers = with maintainers; [ bbenoist qknight ttuegel ];
|
maintainers = with maintainers; [ bbenoist qknight ttuegel ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue