2022-01-25 10:47:16 +00:00
|
|
|
{
|
|
|
|
description = "Small exercises to get you used to reading and writing Rust code";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
flake-compat = {
|
|
|
|
url = "github:edolstra/flake-compat";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = { self, flake-utils, nixpkgs, ... }:
|
|
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
|
|
let
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
2023-01-03 07:26:12 +00:00
|
|
|
|
|
|
|
cargoBuildInputs = with pkgs; lib.optionals stdenv.isDarwin [
|
|
|
|
darwin.apple_sdk.frameworks.CoreServices
|
|
|
|
];
|
|
|
|
|
2022-01-25 10:47:16 +00:00
|
|
|
rustlings =
|
|
|
|
pkgs.rustPlatform.buildRustPackage {
|
|
|
|
name = "rustlings";
|
2022-12-23 15:53:03 +00:00
|
|
|
version = "5.3.0";
|
2022-01-25 10:47:16 +00:00
|
|
|
|
2023-01-03 07:26:12 +00:00
|
|
|
buildInputs = cargoBuildInputs;
|
2022-12-10 12:23:15 +00:00
|
|
|
|
2022-01-25 10:47:16 +00:00
|
|
|
src = with pkgs.lib; cleanSourceWith {
|
|
|
|
src = self;
|
|
|
|
# a function that returns a bool determining if the path should be included in the cleaned source
|
|
|
|
filter = path: type:
|
|
|
|
let
|
|
|
|
# filename
|
|
|
|
baseName = builtins.baseNameOf (toString path);
|
|
|
|
# path from root directory
|
|
|
|
path' = builtins.replaceStrings [ "${self}/" ] [ "" ] path;
|
|
|
|
# checks if path is in the directory
|
|
|
|
inDirectory = directory: hasPrefix directory path';
|
|
|
|
in
|
|
|
|
inDirectory "src" ||
|
|
|
|
inDirectory "tests" ||
|
|
|
|
hasPrefix "Cargo" baseName ||
|
|
|
|
baseName == "info.toml";
|
|
|
|
};
|
|
|
|
|
|
|
|
cargoLock.lockFile = ./Cargo.lock;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
devShell = pkgs.mkShell {
|
2022-12-10 12:57:26 +00:00
|
|
|
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
|
|
|
|
|
2022-01-25 10:47:16 +00:00
|
|
|
buildInputs = with pkgs; [
|
|
|
|
cargo
|
|
|
|
rustc
|
|
|
|
rust-analyzer
|
|
|
|
rustlings
|
2023-01-03 07:26:12 +00:00
|
|
|
rustfmt
|
|
|
|
clippy
|
|
|
|
] ++ cargoBuildInputs;
|
2022-01-25 10:47:16 +00:00
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|