diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-01-06 14:21:53 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-01-06 14:21:53 +0100 |
commit | 341ae582134e1d0393db864584c42228341ac3ec (patch) | |
tree | 0f3981213b5592a0486e168f9187399091da77d0 /gnu/packages/ldc.scm | |
parent | 7266848ace1da9b43c3a06bf4c942c56d4ba3d6a (diff) | |
download | guix-341ae582134e1d0393db864584c42228341ac3ec.tar guix-341ae582134e1d0393db864584c42228341ac3ec.tar.gz |
gnu: ldc: Fix license.
* gnu/packages/ldc.scm (ldc)[license]: Replace invalid use of
'license:x11-style' by LICENSE:BOOST1.0.
Diffstat (limited to 'gnu/packages/ldc.scm')
-rw-r--r-- | gnu/packages/ldc.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/ldc.scm b/gnu/packages/ldc.scm index 06040a2b92..1981bc115d 100644 --- a/gnu/packages/ldc.scm +++ b/gnu/packages/ldc.scm @@ -115,4 +115,4 @@ latest DMD frontend and uses LLVM as backend.") ;; which is released under the "Boost Software License version 1.0". (license (list license:bsd-3 license:gpl2+ - license:x11-style "http://www.boost.org/LICENSE_1_0.txt")))) + license:boost1.0)))) |