summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorErin van der Veen <erin@erinvanderveen.nl>2021-03-17 15:07:48 +0100
committerErin van der Veen <erin@erinvanderveen.nl>2021-03-17 15:07:48 +0100
commit2e698f6ba7494b015303e5275a00741b44eba3b1 (patch)
tree2a43bc7a174b95661188ffd4c02fcaaebc6599d7 /pkgs/development/compilers
parent2a88ea4333b134153f3ef2f1b98938c946988c57 (diff)
downloadnixpkgs-2e698f6ba7494b015303e5275a00741b44eba3b1.tar
nixpkgs-2e698f6ba7494b015303e5275a00741b44eba3b1.tar.gz
nixpkgs-2e698f6ba7494b015303e5275a00741b44eba3b1.tar.bz2
nixpkgs-2e698f6ba7494b015303e5275a00741b44eba3b1.tar.lz
nixpkgs-2e698f6ba7494b015303e5275a00741b44eba3b1.tar.xz
nixpkgs-2e698f6ba7494b015303e5275a00741b44eba3b1.tar.zst
nixpkgs-2e698f6ba7494b015303e5275a00741b44eba3b1.zip
clean: change to bsd2 license
Clean is released under the bsd2 license as can be seen here:
https://clean.cs.ru.nl/Download_Clean

For the full license, see:
https://ftp.cs.ru.nl/Clean/Clean30/CleanLicenseConditions.txt
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/clean/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/compilers/clean/default.nix b/pkgs/development/compilers/clean/default.nix
index f8121958e29..e360bb05f40 100644
--- a/pkgs/development/compilers/clean/default.nix
+++ b/pkgs/development/compilers/clean/default.nix
@@ -1,7 +1,8 @@
 { lib, stdenv, fetchurl }:
 
 stdenv.mkDerivation {
-  name = "clean-3.0";
+  pname = "clean";
+  version = "3.0";
 
   src =
     if stdenv.hostPlatform.system == "i686-linux" then (fetchurl {
@@ -45,8 +46,8 @@ stdenv.mkDerivation {
     '';
 
     homepage = "http://wiki.clean.cs.ru.nl/Clean";
-    license = lib.licenses.lgpl21;
-    maintainers = [ lib.maintainers.kkallio ];
+    license = lib.licenses.bsd2;
+    maintainers = [ lib.maintainers.erin ];
     platforms = [ "i686-linux" "x86_64-linux" ];
   };
 }