Skip to content

Commit 843f141

Browse files
committed
Fixed the VMs
1 parent dcddff8 commit 843f141

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

flake.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
src = builtins.fetchGit {
2727
url = "https://github.com/input-output-hk/mantis";
2828
rev = self.rev or "482340d5e6ab635e5a5047e9b670d59b4ad366c2";
29-
ref = "develop";
29+
ref = "3.1.0-flake";
3030
submodules = true;
3131
};
3232
};

nix/entrypoint.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
{ lib, writeShellScript, awscli, mantis-kevm, coreutils, gnugrep }:
1+
{ lib, writeShellScript, awscli, mantis, coreutils, gnugrep }:
22
writeShellScript "mantis" ''
33
set -exuo pipefail
44
5-
export PATH="${lib.makeBinPath [ coreutils mantis-kevm awscli gnugrep ]}"
5+
export PATH="${lib.makeBinPath [ coreutils mantis awscli gnugrep ]}"
66
77
${builtins.readFile ./entrypoint.sh}
88
''

nix/pkgs/mantis/wrapped.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
{ lib, stdenv, mantis, makeWrapper, jre, gawk, gnused, kevm }:
1+
{ lib, stdenv, mantis, makeWrapper, jre, gawk, gnused, kevm, coreutils }:
22
let
33
inherit (stdenv.lib) optionalString makeLibraryPath;
44
inherit (stdenv) cc isDarwin;
55
LD_LIBRARY_PATH = makeLibraryPath [ cc.cc.lib ];
6-
PATH = lib.makeBinPath [ jre gawk gnused kevm ];
6+
PATH = lib.makeBinPath [ jre gawk gnused kevm coreutils ];
77
in stdenv.mkDerivation {
88
pname = "mantis";
99
version = let

0 commit comments

Comments
 (0)