summary refs log tree commit diff
path: root/pkgs/development/compilers/gcc/4.5
diff options
context:
space:
mode:
authorMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-06-19 06:19:00 +0200
committerPeter Simons <simons@cryp.to>2014-07-28 11:31:14 +0200
commit7a459962331e095cabd0cf5d56106727648a1824 (patch)
tree2865e508ba6f87d36ec3b40a44a8805ca877702e /pkgs/development/compilers/gcc/4.5
parent50f548771e016bc6563b5b6b23a49c2ed6da88a0 (diff)
downloadnixlib-7a459962331e095cabd0cf5d56106727648a1824.tar
nixlib-7a459962331e095cabd0cf5d56106727648a1824.tar.gz
nixlib-7a459962331e095cabd0cf5d56106727648a1824.tar.bz2
nixlib-7a459962331e095cabd0cf5d56106727648a1824.tar.lz
nixlib-7a459962331e095cabd0cf5d56106727648a1824.tar.xz
nixlib-7a459962331e095cabd0cf5d56106727648a1824.tar.zst
nixlib-7a459962331e095cabd0cf5d56106727648a1824.zip
Turn some license strings into lib.licenses values
Diffstat (limited to 'pkgs/development/compilers/gcc/4.5')
-rw-r--r--pkgs/development/compilers/gcc/4.5/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/gcc/4.5/default.nix b/pkgs/development/compilers/gcc/4.5/default.nix
index 9713164711f1..fbeea0768ad3 100644
--- a/pkgs/development/compilers/gcc/4.5/default.nix
+++ b/pkgs/development/compilers/gcc/4.5/default.nix
@@ -364,7 +364,7 @@ stdenv.mkDerivation ({
 
   meta = {
     homepage = http://gcc.gnu.org/;
-    license = "GPLv3+";  # runtime support libraries are typically LGPLv3+
+    license = stdenv.lib.licenses.gpl3Plus;  # runtime support libraries are typically LGPLv3+
     description = "GNU Compiler Collection, version ${version}"
       + (if stripped then "" else " (with debugging info)");
 
@@ -432,7 +432,7 @@ stdenv.mkDerivation ({
 
   meta = {
     homepage = "http://ghdl.free.fr/";
-    license = "GPLv2+";
+    license = stdenv.lib.licenses.gpl2Plus;
     description = "Complete VHDL simulator, using the GCC technology (gcc ${version})";
     maintainers = with stdenv.lib.maintainers; [viric];
     platforms = with stdenv.lib.platforms; linux;