diff options
Diffstat (limited to 'distro/packages/flex.scm')
-rw-r--r-- | distro/packages/flex.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/distro/packages/flex.scm b/distro/packages/flex.scm index 05bd5e0dd5..cf3c69b12a 100644 --- a/distro/packages/flex.scm +++ b/distro/packages/flex.scm @@ -17,6 +17,7 @@ ;;; along with Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (distro packages flex) + #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) @@ -55,4 +56,6 @@ can be compiled and linked to produce an executable. When the executable is run, it analyzes its input for occurrences of text matching the regular expressions for each rule. Whenever it finds a match, it executes the corresponding C code.") - (license "BSD"))) + (license (bsd-style "file://COPYING" + "See COPYING in the distribution.")))) + |