mirror of https://github.com/crytic/echidna
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
711 B
25 lines
711 B
{
|
|
nixConfig = {
|
|
extra-substituters = "https://trailofbits.cachix.org";
|
|
extra-trusted-public-keys = "trailofbits.cachix.org-1:jRuxrlFghP6HstIaZg7DhvTgHyK/lcYa7U8y3CgKjzU=";
|
|
};
|
|
|
|
inputs = {
|
|
nixpkgs.url = github:NixOS/nixpkgs;
|
|
};
|
|
|
|
outputs = { self, nixpkgs }: {
|
|
defaultPackage.x86_64-linux = import ./. {
|
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
|
};
|
|
defaultPackage.aarch64-linux = import ./. {
|
|
pkgs = nixpkgs.legacyPackages.aarch64-linux;
|
|
};
|
|
defaultPackage.x86_64-darwin = import ./. {
|
|
pkgs = nixpkgs.legacyPackages.x86_64-darwin;
|
|
};
|
|
defaultPackage.aarch64-darwin = import ./. {
|
|
pkgs = nixpkgs.legacyPackages.aarch64-darwin;
|
|
};
|
|
};
|
|
}
|
|
|