diff options
| author | Matthew Bauer <mjbauer95@gmail.com> | 2018-08-12 09:00:26 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-12 09:00:26 -0500 |
| commit | 4c1d5a8dac394873107c2f18c8b48f8849fd698f (patch) | |
| tree | 6df198050fed36a9ab4cf292f8a471063072c238 | |
| parent | Merge pull request #44935 from thblt/fixup1 (diff) | |
| parent | antlr: fix license (diff) | |
| download | nixpkgs-4c1d5a8dac394873107c2f18c8b48f8849fd698f.tar.gz | |
Merge pull request #44899 from bhipple/fix/antlr-license
antlr: fix license
| -rw-r--r-- | pkgs/development/tools/parsing/antlr/2.7.7.nix | 1 | ||||
| -rw-r--r-- | pkgs/development/tools/parsing/antlr/3.4.nix | 3 | ||||
| -rw-r--r-- | pkgs/development/tools/parsing/antlr/3.5.nix | 3 | ||||
| -rw-r--r-- | pkgs/development/tools/parsing/antlr/4.7.nix | 2 |
4 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/development/tools/parsing/antlr/2.7.7.nix b/pkgs/development/tools/parsing/antlr/2.7.7.nix index 519540ef52ae..0c67baa96010 100644 --- a/pkgs/development/tools/parsing/antlr/2.7.7.nix +++ b/pkgs/development/tools/parsing/antlr/2.7.7.nix @@ -20,6 +20,7 @@ stdenv.mkDerivation { walk parse trees. ''; homepage = http://www.antlr.org/; + license = licenses.bsd3; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/parsing/antlr/3.4.nix b/pkgs/development/tools/parsing/antlr/3.4.nix index c892b8fa8eab..8074b7c35ad9 100644 --- a/pkgs/development/tools/parsing/antlr/3.4.nix +++ b/pkgs/development/tools/parsing/antlr/3.4.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { }; unpackPhase = "true"; - + installPhase = '' mkdir -p "$out"/{lib/antlr,bin} cp "$src" "$out/lib/antlr/antlr-${version}-complete.jar" @@ -33,6 +33,7 @@ stdenv.mkDerivation rec { walk parse trees. ''; homepage = http://www.antlr.org/; + license = licenses.bsd3; platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/development/tools/parsing/antlr/3.5.nix b/pkgs/development/tools/parsing/antlr/3.5.nix index 030a19e99405..35179b336026 100644 --- a/pkgs/development/tools/parsing/antlr/3.5.nix +++ b/pkgs/development/tools/parsing/antlr/3.5.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { }; unpackPhase = "true"; - + installPhase = '' mkdir -p "$out"/{lib/antlr,bin} cp "$src" "$out/lib/antlr/antlr-${version}-complete.jar" @@ -33,6 +33,7 @@ stdenv.mkDerivation rec { walk parse trees. ''; homepage = http://www.antlr.org/; + license = licenses.bsd3; platforms = platforms.linux; }; } diff --git a/pkgs/development/tools/parsing/antlr/4.7.nix b/pkgs/development/tools/parsing/antlr/4.7.nix index 463ea3199b2a..1ebf7d7dfe24 100644 --- a/pkgs/development/tools/parsing/antlr/4.7.nix +++ b/pkgs/development/tools/parsing/antlr/4.7.nix @@ -28,6 +28,7 @@ let meta = with stdenv.lib; { description = "C++ target for ANTLR 4"; homepage = http://www.antlr.org/; + license = licenses.bsd3; platforms = platforms.unix; }; }; @@ -73,6 +74,7 @@ let walk parse trees. ''; homepage = http://www.antlr.org/; + license = licenses.bsd3; platforms = platforms.unix; }; }; |
