about summary refs log tree commit diff
path: root/pkgs/development/compilers/sdcc
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@riseup.net>2018-07-17 19:17:03 +0300
committerGitHub <noreply@github.com>2018-07-17 19:17:03 +0300
commit879edd79be34563547c884d44fed0e05cc9a2266 (patch)
treee5b1fb63091c561037f64ca030a2c4635ca7b8dc /pkgs/development/compilers/sdcc
parent4bd4c876f2607322cee7716a7a67c3e2e2e294c4 (diff)
downloadnixlib-879edd79be34563547c884d44fed0e05cc9a2266.tar
nixlib-879edd79be34563547c884d44fed0e05cc9a2266.tar.gz
nixlib-879edd79be34563547c884d44fed0e05cc9a2266.tar.bz2
nixlib-879edd79be34563547c884d44fed0e05cc9a2266.tar.lz
nixlib-879edd79be34563547c884d44fed0e05cc9a2266.tar.xz
nixlib-879edd79be34563547c884d44fed0e05cc9a2266.tar.zst
nixlib-879edd79be34563547c884d44fed0e05cc9a2266.zip
sdcc: fix license condition
Diffstat (limited to 'pkgs/development/compilers/sdcc')
-rw-r--r--pkgs/development/compilers/sdcc/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/sdcc/default.nix b/pkgs/development/compilers/sdcc/default.nix
index 0e9a348dd508..f74299334535 100644
--- a/pkgs/development/compilers/sdcc/default.nix
+++ b/pkgs/development/compilers/sdcc/default.nix
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
       PIC18 targets. It can be retargeted for other microprocessors.
     '';
     homepage = http://sdcc.sourceforge.net/;
-    license = with licenses; if (gputils == null) then unfreeRedistributable else gpl2;
+    license = with licenses; if (gputils == null) then gpl2 else unfreeRedistributable;
     maintainers = with maintainers; [ bjornfor yorickvp ];
     platforms = platforms.linux;
   };