Skip to content

Commit

Permalink
implement crypto3 checks
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMlashkin committed Sep 3, 2024
1 parent 5fcac98 commit 8242b5e
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,19 @@
default = crypto3; #TODO
};

#overlays.default = final: prev: packages;
checks = rec {
crypto3-gcc = (pkgs.callPackage ./crypto3/crypto3.nix {
runTests = true;
});
crypto3-clang = (pkgs.callPackage ./crypto3/crypto3.nix {
stdenv = pkgs.llvmPackages_18.stdenv;
runTests = true;
});
all = pkgs.symlinkJoin {
name = "all";
paths = [ crypto3-gcc crypto3-clang];
};
default = all;
};
}));
}

0 comments on commit 8242b5e

Please sign in to comment.