start project

This commit is contained in:
2023-08-27 20:32:47 +02:00
commit 8a8d49243e
5 changed files with 223 additions and 0 deletions

15
flake.nix Normal file
View File

@@ -0,0 +1,15 @@
{
description = "zremap nix flake";
outputs = { self, nixpkgs }: {
defaultPackage.x86_64-linux =
with import nixpkgs { system = "x86_64-linux"; };
stdenv.mkDerivation {
pname = "zremap";
version = "0.1";
src = self;
nativeBuildInputs = [ zig.hook ];
};
};
}