mirror of
https://github.com/ipetkov/crane.git
synced 2024-11-26 09:08:57 +03:00
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{
|
|
inputs = {
|
|
# NB: nixpkgs-unstable testing will come from the root flake
|
|
nixpkgs.url = "github:NixOS/nixpkgs/release-23.11";
|
|
nixpkgs-darwin.url = "github:NixOS/nixpkgs/nixpkgs-23.11-darwin";
|
|
|
|
# The version of wasm-bindgen-cli needs to match the version in Cargo.lock
|
|
# Update this to include the version you need
|
|
nixpkgs-for-wasm-bindgen.url = "github:NixOS/nixpkgs/4e6868b1aa3766ab1de169922bb3826143941973";
|
|
|
|
advisory-db = {
|
|
url = "github:rustsec/advisory-db";
|
|
flake = false;
|
|
};
|
|
|
|
crane = {
|
|
url = "github:ipetkov/crane";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
fenix = {
|
|
url = "github:nix-community/fenix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
flake-compat = {
|
|
url = "github:edolstra/flake-compat";
|
|
flake = false;
|
|
};
|
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
rust-overlay = {
|
|
url = "github:oxalica/rust-overlay";
|
|
inputs = {
|
|
nixpkgs.follows = "nixpkgs";
|
|
flake-utils.follows = "flake-utils";
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
outputs = _: { };
|
|
}
|