Add rudimentary flake

This commit is contained in:
2024-11-01 21:08:54 -05:00
parent 2a691ba199
commit 967a7032b8
4 changed files with 102 additions and 3 deletions
+8
View File
@@ -0,0 +1,8 @@
{ lib, stdenv }:
stdenv.mkDerivation {
pname = "splitbit";
version = "v1.0.0";
src = ../.;
env.PREFIX = builtins.placeholder "out";
}