This commit is contained in:
nora 2024-09-07 22:43:10 +02:00
parent b2ab2ff73e
commit 288410ee30
2 changed files with 19 additions and 0 deletions

6
default.nix Normal file
View file

@ -0,0 +1,6 @@
{ pkgs ? import <nixpkgs> { }, ... }: pkgs.rustPlatform.buildRustPackage {
src = pkgs.lib.cleanSource ./.;
pname = "does-it-build";
version = "0.1.0";
cargoLock.lockFile = ./Cargo.lock;
}