Merge branch 'master' of github.com:hectic-lab/util.nix

This commit is contained in:
2025-06-30 21:00:04 +00:00
14 changed files with 262 additions and 127 deletions

View File

@@ -1,12 +1,11 @@
{ stdenv, patchelf, gcc, lib, bash, inotify-tools }:
stdenv.mkDerivation {
pname = "hectic";
version = "1.0";
src = ./.;
doCheck = true;
nativeBuildInputs = [ gcc inotify-tools ];
nativeBuildInputs = [gcc inotify-tools];
buildPhase = ''
ls
@@ -86,4 +85,4 @@ EOF
description = "hectic";
license = lib.licenses.mit;
};
}
}