25 lines
485 B
Nix
25 lines
485 B
Nix
{
|
|
description = "simple-easing";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, flake-utils }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let pkgs = import nixpkgs { inherit system; };
|
|
in {
|
|
devShell = pkgs.mkShell {
|
|
name = "simple-easing";
|
|
buildInputs = with pkgs; [
|
|
cargo
|
|
rustc
|
|
rustfmt
|
|
rust-analyzer
|
|
];
|
|
};
|
|
}
|
|
);
|
|
}
|