···3434 The Google Data APIs provide a simple protocol for reading and writing
3535 data on the web.
3636 '';
3737+3838+ license = licenses.asl20;
3739 platforms = platforms.linux;
3840 };
3941}
+3-2
pkgs/development/libraries/gdcm/default.nix
···2626 buildInputs = [ cmake vtk ];
2727 propagatedBuildInputs = [ ];
28282929- meta = {
2929+ meta = with stdenv.lib; {
3030 description = "The grassroots cross-platform DICOM implementation";
3131 longDescription = ''
3232 Grassroots DICOM (GDCM) is an implementation of the DICOM standard designed to be open source so that researchers may access clinical data directly.
3333 GDCM includes a file format definition and a network communications protocol, both of which should be extended to provide a full set of tools for a researcher or small medical imaging vendor to interface with an existing medical database.
3434 '';
3535 homepage = http://gdcm.sourceforge.net/;
3636- platforms = stdenv.lib.platforms.all;
3636+ license = with licenses; [ bsd3 asl20 ];
3737+ platforms = platforms.all;
3738 };
3839}
3940
···52525353 enableParallelBuilding = true;
54545555- meta = {
5555+ meta = with lib; {
5656 description = "Well integrated set of translation tools and documentation";
57575858 longDescription = ''
···76767777 homepage = http://www.gnu.org/software/gettext/;
78787979- maintainers = with lib.maintainers; [ zimbatm vrthra ];
8080- platforms = lib.platforms.all;
7979+ maintainers = with maintainers; [ zimbatm vrthra ];
8080+ license = licenses.gpl2Plus;
8181+ platforms = platforms.all;
8182 };
8283}
8384
+4-2
pkgs/development/libraries/giflib/4.1.nix
···10101111 hardeningDisable = [ "format" ];
12121313- meta = {
1313+ meta = with stdenv.lib; {
1414+ description = "A library for reading and writing gif images";
1415 branch = "4.1";
1515- platforms = stdenv.lib.platforms.unix;
1616+ license = licenses.mit;
1717+ platforms = platforms.unix;
1618 };
1719}
1820
+2
pkgs/development/libraries/gio-sharp/default.nix
···23232424 meta = with stdenv.lib; {
2525 description = "GIO API bindings";
2626+ homepage = https://github.com/mono/gio-sharp;
2727+ license = licenses.mit;
2628 platforms = platforms.linux;
2729 };
2830}
+1
pkgs/development/libraries/gnet/default.nix
···1717 meta = with stdenv.lib; {
1818 description = "A network library, written in C, object-oriented, and built upon GLib";
1919 homepage = https://developer.gnome.org/gnet/;
2020+ license = licenses.lgpl2;
2021 platforms = platforms.linux;
2122 maintainers = with maintainers; [ pSub ];
2223 };
···181181 inherit (s) url sha256;
182182 };
183183184184- meta = {
184184+ meta = with stdenv.lib; {
185185 inherit (s) version;
186186 description = "Distributed storage system";
187187- maintainers = [
188188- stdenv.lib.maintainers.raskin
189189- ];
190190- platforms = with stdenv.lib.platforms;
191191- linux ++ freebsd;
187187+ homepage = https://www.gluster.org;
188188+ license = licenses.lgpl3Plus; # dual licese: choice of lgpl3Plus or gpl2
189189+ maintainers = [ maintainers.raskin ];
190190+ platforms = with platforms; linux ++ freebsd;
192191 };
193192}
+9
pkgs/tools/graphics/gnuplot/default.nix
···6161 homepage = http://www.gnuplot.info/;
6262 description = "A portable command-line driven graphing utility for many platforms";
6363 platforms = platforms.linux ++ platforms.darwin;
6464+ license = {
6565+ # Essentially a BSD license with one modifaction:
6666+ # Permission to modify the software is granted, but not the right to
6767+ # distribute the complete modified source code. Modifications are to
6868+ # be distributed as patches to the released version. Permission to
6969+ # distribute binaries produced by compiling modified sources is granted,
7070+ # provided you: ...
7171+ url = https://sourceforge.net/p/gnuplot/gnuplot-main/ci/master/tree/Copyright;
7272+ };
6473 maintainers = with maintainers; [ lovek323 ];
6574 };
6675}