forked from rust-lang/rustlings
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Winter <[email protected]>
- Loading branch information
1 parent
c923e7a
commit 8e0f5bf
Showing
4 changed files
with
132 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{ | ||
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}; | ||
rustlings = | ||
pkgs.rustPlatform.buildRustPackage { | ||
name = "rustlings"; | ||
version = "5.2.1"; | ||
|
||
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 { | ||
buildInputs = with pkgs; [ | ||
cargo | ||
rustc | ||
rust-analyzer | ||
rustlings | ||
]; | ||
}; | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
(import (let lock = builtins.fromJSON (builtins.readFile ./flake.lock); | ||
in fetchTarball { | ||
url = | ||
"https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz"; | ||
sha256 = lock.nodes.flake-compat.locked.narHash; | ||
}) { src = ./.; }).shellNix |