Skip to content

Commit

Permalink
Update flake with name and add missing security-check
Browse files Browse the repository at this point in the history
  • Loading branch information
ninokeldishvili committed May 7, 2024
1 parent 7d30776 commit 7522957
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@
}).buildRustPackage {
src = ./.;
doCheck = false;
name = "rain-metadata";
name = "ethgild";
cargoLock.lockFile = ./Cargo.lock;
# allows for git deps to be resolved without the need to specify their outputHash
cargoLock.allowBuiltinFetchGit = true;
buildPhase = ''
cargo build --release --bin rain-metadata --all-features
cargo build --release --bin ethgild --all-features
'';
installPhase = ''
mkdir -p $out/bin
cp target/release/rain-metadata $out/bin/
cp target/release/ethgild $out/bin/
'';
buildInputs = with pkgs; [
openssl
Expand Down Expand Up @@ -84,6 +84,7 @@
packages.ci-lint
packages.flush-all
packages.ipfs-add
packages.security-check
];
shellHook = rainix.devShells.${system}.default.shellHook;
buildInputs = rainix.devShells.${system}.default.buildInputs;
Expand Down

0 comments on commit 7522957

Please sign in to comment.