Initial commit

This commit is contained in:
nora 2024-08-10 13:47:55 +02:00
commit 79f4a10d5f
7 changed files with 1645 additions and 0 deletions

10
default.nix Normal file
View file

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