This commit is contained in:
nora 2024-08-23 13:57:28 +02:00
parent cd3628e168
commit dd029f03bd
6 changed files with 328 additions and 0 deletions

View file

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