Initial commit

This commit is contained in:
nora 2024-08-26 01:56:38 +02:00
commit 094afb02fe
6 changed files with 609 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 = "qotdd";
version = "0.1.0";
cargoLock.lockFile = ./Cargo.lock;
}