summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorKarl Hallsby <karl@hallsby.com>2021-06-05 13:28:57 -0500
committerKarl Hallsby <karl@hallsby.com>2021-06-05 20:14:54 -0500
commit38db89df057daae580442c8b39177ad5db6b99ac (patch)
tree7ff15c43f7d58c142251cbc7af6c3b65d0e5334c /pkgs/applications
parent16f5b7fc9264287d565ee432bf7cd5231f0fc3ff (diff)
downloadnixpkgs-38db89df057daae580442c8b39177ad5db6b99ac.tar
nixpkgs-38db89df057daae580442c8b39177ad5db6b99ac.tar.gz
nixpkgs-38db89df057daae580442c8b39177ad5db6b99ac.tar.bz2
nixpkgs-38db89df057daae580442c8b39177ad5db6b99ac.tar.lz
nixpkgs-38db89df057daae580442c8b39177ad5db6b99ac.tar.xz
nixpkgs-38db89df057daae580442c8b39177ad5db6b99ac.tar.zst
nixpkgs-38db89df057daae580442c8b39177ad5db6b99ac.zip
verilator: specify lgpl3Only and artistic2 licenses
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/science/electronics/verilator/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/science/electronics/verilator/default.nix b/pkgs/applications/science/electronics/verilator/default.nix
index 5039b842f41..5377a7b3d11 100644
--- a/pkgs/applications/science/electronics/verilator/default.nix
+++ b/pkgs/applications/science/electronics/verilator/default.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "Fast and robust (System)Verilog simulator/compiler";
     homepage    = "https://www.veripool.org/wiki/verilator";
-    license     = licenses.lgpl3;
+    license     = with licenses; [ lgpl3Only artistic2 ];
     platforms   = platforms.unix;
     maintainers = with maintainers; [ thoughtpolice ];
   };