···22 description = "GiNaC is Not a CAS";
23 homepage = http://www.ginac.de/;
24 maintainers = with maintainers; [ lovek323 ];
025 platforms = platforms.all;
26 };
27}
···22 description = "GiNaC is Not a CAS";
23 homepage = http://www.ginac.de/;
24 maintainers = with maintainers; [ lovek323 ];
25+ license = licenses.gpl2;
26 platforms = platforms.all;
27 };
28}
+1
pkgs/applications/science/math/glsurf/default.nix
···26 meta = {
27 homepage = http://www.lama.univ-savoie.fr/~raffalli/glsurf;
28 description = "A program to draw implicit surfaces and curves";
029 };
30}
···26 meta = {
27 homepage = http://www.lama.univ-savoie.fr/~raffalli/glsurf;
28 description = "A program to draw implicit surfaces and curves";
29+ license = stdenv.lib.licenses.lgpl21;
30 };
31}
···34 The Google Data APIs provide a simple protocol for reading and writing
35 data on the web.
36 '';
0037 platforms = platforms.linux;
38 };
39}
···34 The Google Data APIs provide a simple protocol for reading and writing
35 data on the web.
36 '';
37+38+ license = licenses.asl20;
39 platforms = platforms.linux;
40 };
41}
+3-2
pkgs/development/libraries/gdcm/default.nix
···26 buildInputs = [ cmake vtk ];
27 propagatedBuildInputs = [ ];
2829- meta = {
30 description = "The grassroots cross-platform DICOM implementation";
31 longDescription = ''
32 Grassroots DICOM (GDCM) is an implementation of the DICOM standard designed to be open source so that researchers may access clinical data directly.
33 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.
34 '';
35 homepage = http://gdcm.sourceforge.net/;
36- platforms = stdenv.lib.platforms.all;
037 };
38}
39
···26 buildInputs = [ cmake vtk ];
27 propagatedBuildInputs = [ ];
2829+ meta = with stdenv.lib; {
30 description = "The grassroots cross-platform DICOM implementation";
31 longDescription = ''
32 Grassroots DICOM (GDCM) is an implementation of the DICOM standard designed to be open source so that researchers may access clinical data directly.
33 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.
34 '';
35 homepage = http://gdcm.sourceforge.net/;
36+ license = with licenses; [ bsd3 asl20 ];
37+ platforms = platforms.all;
38 };
39}
40
+1
pkgs/development/libraries/gdk-pixbuf/default.nix
···116 description = "A library for image loading and manipulation";
117 homepage = http://library.gnome.org/devel/gdk-pixbuf/;
118 maintainers = [ maintainers.eelco ];
0119 platforms = platforms.unix;
120 };
121}
···1011 hardeningDisable = [ "format" ];
1213+ meta = with stdenv.lib; {
14+ description = "A library for reading and writing gif images";
15 branch = "4.1";
16+ license = licenses.mit;
17+ platforms = platforms.unix;
18 };
19}
20
+2
pkgs/development/libraries/gio-sharp/default.nix
···2324 meta = with stdenv.lib; {
25 description = "GIO API bindings";
0026 platforms = platforms.linux;
27 };
28}
···2324 meta = with stdenv.lib; {
25 description = "GIO API bindings";
26+ homepage = https://github.com/mono/gio-sharp;
27+ license = licenses.mit;
28 platforms = platforms.linux;
29 };
30}
+1
pkgs/development/libraries/gnet/default.nix
···17 meta = with stdenv.lib; {
18 description = "A network library, written in C, object-oriented, and built upon GLib";
19 homepage = https://developer.gnome.org/gnet/;
020 platforms = platforms.linux;
21 maintainers = with maintainers; [ pSub ];
22 };
···17 meta = with stdenv.lib; {
18 description = "A network library, written in C, object-oriented, and built upon GLib";
19 homepage = https://developer.gnome.org/gnet/;
20+ license = licenses.lgpl2;
21 platforms = platforms.linux;
22 maintainers = with maintainers; [ pSub ];
23 };
···19 meta = with stdenv.lib; {
20 homepage = https://github.com/robfig/glock;
21 description = "A command-line tool to lock Go dependencies to specific revisions";
022 maintainers = [ maintainers.rushmorem ];
23 };
24}
···19 meta = with stdenv.lib; {
20 homepage = https://github.com/robfig/glock;
21 description = "A command-line tool to lock Go dependencies to specific revisions";
22+ license = licenses.mit;
23 maintainers = [ maintainers.rushmorem ];
24 };
25}
···181 inherit (s) url sha256;
182 };
183184- meta = {
185 inherit (s) version;
186 description = "Distributed storage system";
187- maintainers = [
188- stdenv.lib.maintainers.raskin
189- ];
190- platforms = with stdenv.lib.platforms;
191- linux ++ freebsd;
192 };
193}
···181 inherit (s) url sha256;
182 };
183184+ meta = with stdenv.lib; {
185 inherit (s) version;
186 description = "Distributed storage system";
187+ homepage = https://www.gluster.org;
188+ license = licenses.lgpl3Plus; # dual licese: choice of lgpl3Plus or gpl2
189+ maintainers = [ maintainers.raskin ];
190+ platforms = with platforms; linux ++ freebsd;
0191 };
192}
+9
pkgs/tools/graphics/gnuplot/default.nix
···61 homepage = http://www.gnuplot.info/;
62 description = "A portable command-line driven graphing utility for many platforms";
63 platforms = platforms.linux ++ platforms.darwin;
00000000064 maintainers = with maintainers; [ lovek323 ];
65 };
66}
···61 homepage = http://www.gnuplot.info/;
62 description = "A portable command-line driven graphing utility for many platforms";
63 platforms = platforms.linux ++ platforms.darwin;
64+ license = {
65+ # Essentially a BSD license with one modifaction:
66+ # Permission to modify the software is granted, but not the right to
67+ # distribute the complete modified source code. Modifications are to
68+ # be distributed as patches to the released version. Permission to
69+ # distribute binaries produced by compiling modified sources is granted,
70+ # provided you: ...
71+ url = https://sourceforge.net/p/gnuplot/gnuplot-main/ci/master/tree/Copyright;
72+ };
73 maintainers = with maintainers; [ lovek323 ];
74 };
75}