summary refs log tree commit diff
path: root/nixos/tests/ammonite.nix
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-11-04 12:45:20 -0500
committerTim Steinbach <tim@nequissimus.com>2020-11-04 12:57:58 -0500
commit7e062659e97ba0c354a329dbf6ae2f9460cfc69b (patch)
tree24ce2e05e5ab411070a32fb78030d5bedd156290 /nixos/tests/ammonite.nix
parent0aaf9d61432d6fae51a8164bbb9fe97bd636441f (diff)
downloadnixpkgs-7e062659e97ba0c354a329dbf6ae2f9460cfc69b.tar
nixpkgs-7e062659e97ba0c354a329dbf6ae2f9460cfc69b.tar.gz
nixpkgs-7e062659e97ba0c354a329dbf6ae2f9460cfc69b.tar.bz2
nixpkgs-7e062659e97ba0c354a329dbf6ae2f9460cfc69b.tar.lz
nixpkgs-7e062659e97ba0c354a329dbf6ae2f9460cfc69b.tar.xz
nixpkgs-7e062659e97ba0c354a329dbf6ae2f9460cfc69b.tar.zst
nixpkgs-7e062659e97ba0c354a329dbf6ae2f9460cfc69b.zip
ammonite: Add test reference, update script
Diffstat (limited to 'nixos/tests/ammonite.nix')
-rw-r--r--nixos/tests/ammonite.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/ammonite.nix b/nixos/tests/ammonite.nix
index 1955e42be5f..e9f06358e13 100644
--- a/nixos/tests/ammonite.nix
+++ b/nixos/tests/ammonite.nix
@@ -8,7 +8,7 @@ import ./make-test-python.nix ({ pkgs, ...} : {
     amm =
       { pkgs, ... }:
         {
-          environment.systemPackages = [ pkgs.ammonite ];
+          environment.systemPackages = [ (pkgs.ammonite.override { jre = pkgs.jre8; }) ];
         };
     };