gnuplot: add license

This commit is contained in:
Markus Kowalewski 2018-08-20 20:37:04 +02:00
parent c003762447
commit 2d31bede61
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -61,6 +61,15 @@ stdenv.mkDerivation rec {
homepage = http://www.gnuplot.info/;
description = "A portable command-line driven graphing utility for many platforms";
platforms = platforms.linux ++ platforms.darwin;
license = {
# Essentially a BSD license with one modifaction:
# 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;
};
maintainers = with maintainers; [ lovek323 ];
};
}