forked from Zynh0722/nyazoom
37 lines
889 B
Nix
37 lines
889 B
Nix
{
|
|
description = "A very basic flake";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
|
rust-overlay = {
|
|
url = "github:oxalica/rust-overlay";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = { nixpkgs, rust-overlay, ... }:
|
|
let
|
|
# System types to support.
|
|
supportedSystems = [
|
|
"x86_64-linux"
|
|
];
|
|
|
|
forAllSystems = function: nixpkgs.lib.genAttrs supportedSystems
|
|
(system: function (import nixpkgs {
|
|
inherit system;
|
|
overlays = [ rust-overlay.overlays.default ];
|
|
}));
|
|
in
|
|
{
|
|
devShells = forAllSystems
|
|
(pkgs: {
|
|
default = import ./shell.nix {
|
|
inherit pkgs;
|
|
additionalBuildInputs = [
|
|
(pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default))
|
|
];
|
|
};
|
|
});
|
|
};
|
|
}
|