1
0
Fork 0
This repository has been archived on 2025-03-30. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
compiler-course/default.nix

19 lines
364 B
Nix

{
rustPlatform,
}:
rustPlatform.buildRustPackage {
pname = "compiler-course";
version = "0.1.0";
# You would not use this in an actual nix package!
src = builtins.fetchGit {
url = "https://gitea.vsinerva.fi/VSinerva/compiler-course.git";
name = "compiler-course-src";
ref = "main";
};
cargoLock = {
lockFile = ./Cargo.lock;
};
}