gnuplot: use gnuplot license (#458240)

This commit is contained in:
Jo
2025-11-03 21:58:04 +00:00
committed by GitHub
2 changed files with 6 additions and 9 deletions
+5
View File
@@ -665,6 +665,11 @@ lib.mapAttrs mkLicense (
url = "https://www.gust.org.pl/projects/e-foundry/licenses/GUST-FONT-SOURCE-LICENSE.txt";
};
gnuplot = {
spdxId = "gnuplot";
fullName = "gnuplot License";
};
gpl1Only = {
spdxId = "GPL-1.0-only";
fullName = "GNU General Public License v1.0 only";
+1 -9
View File
@@ -123,15 +123,7 @@ in
homepage = "http://www.gnuplot.info/";
description = "Portable command-line driven graphing utility for many platforms";
platforms = platforms.linux ++ platforms.darwin;
license = {
# Essentially a BSD license with one modification:
# Permission to modify the software is granted, but not the right to
# distribute the complete modified source code. Modifications are to
# be distributed as patches to the released version. Permission to
# distribute binaries produced by compiling modified sources is granted,
# provided you: ...
url = "https://sourceforge.net/p/gnuplot/gnuplot-main/ci/master/tree/Copyright";
};
license = lib.licenses.gnuplot;
maintainers = with maintainers; [ lovek323 ];
mainProgram = "gnuplot";
};