summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2018-08-16 21:51:07 +0200
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-08-16 21:51:07 +0200
commitf9a1aef084ab146ce162a0004e249d3c26612f94 (patch)
tree9e8503bd18995f0eb00f673a0493b643c41cfb64 /pkgs/development
parent75e8dfeafa40d5d2892b5b1b83f11d5262994cd0 (diff)
downloadnixlib-f9a1aef084ab146ce162a0004e249d3c26612f94.tar
nixlib-f9a1aef084ab146ce162a0004e249d3c26612f94.tar.gz
nixlib-f9a1aef084ab146ce162a0004e249d3c26612f94.tar.bz2
nixlib-f9a1aef084ab146ce162a0004e249d3c26612f94.tar.lz
nixlib-f9a1aef084ab146ce162a0004e249d3c26612f94.tar.xz
nixlib-f9a1aef084ab146ce162a0004e249d3c26612f94.tar.zst
nixlib-f9a1aef084ab146ce162a0004e249d3c26612f94.zip
flex: add license
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/parsing/flex/2.5.35.nix5
-rw-r--r--pkgs/development/tools/parsing/flex/2.6.1.nix5
-rw-r--r--pkgs/development/tools/parsing/flex/default.nix5
3 files changed, 9 insertions, 6 deletions
diff --git a/pkgs/development/tools/parsing/flex/2.5.35.nix b/pkgs/development/tools/parsing/flex/2.5.35.nix
index 1062a361413c..3e40ddee9d9a 100644
--- a/pkgs/development/tools/parsing/flex/2.5.35.nix
+++ b/pkgs/development/tools/parsing/flex/2.5.35.nix
@@ -17,10 +17,11 @@ stdenv.mkDerivation rec {
     "ac_cv_func_realloc_0_nonnull=yes"
   ];
 
-  meta = {
+  meta = with stdenv.lib; {
     branch = "2.5.35";
     homepage = http://flex.sourceforge.net/;
     description = "A fast lexical analyser generator";
-    platforms = stdenv.lib.platforms.unix;
+    license = licenses.bsd2;
+    platforms = platforms.unix;
   };
 }
diff --git a/pkgs/development/tools/parsing/flex/2.6.1.nix b/pkgs/development/tools/parsing/flex/2.6.1.nix
index 954c2bbcb245..81685b6ee661 100644
--- a/pkgs/development/tools/parsing/flex/2.6.1.nix
+++ b/pkgs/development/tools/parsing/flex/2.6.1.nix
@@ -26,9 +26,10 @@ stdenv.mkDerivation rec {
     substituteInPlace Makefile.in --replace "tests" " ";
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = https://github.com/westes/flex;
     description = "A fast lexical analyser generator";
-    platforms = stdenv.lib.platforms.unix;
+    license = licenses.bsd2;
+    platforms = platforms.unix;
   };
 }
diff --git a/pkgs/development/tools/parsing/flex/default.nix b/pkgs/development/tools/parsing/flex/default.nix
index 17323a06cc18..2a91baa80b3a 100644
--- a/pkgs/development/tools/parsing/flex/default.nix
+++ b/pkgs/development/tools/parsing/flex/default.nix
@@ -41,9 +41,10 @@ stdenv.mkDerivation rec {
 
   dontDisableStatic = stdenv.buildPlatform != stdenv.hostPlatform;
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = https://github.com/westes/flex;
     description = "A fast lexical analyser generator";
-    platforms = stdenv.lib.platforms.unix;
+    license = licenses.bsd2;
+    platforms = platforms.unix;
   };
 }