feat: added ironclaw

This commit is contained in:
2026-03-12 13:40:10 +05:30
parent 62072e71ea
commit e89003a063
6 changed files with 35 additions and 6 deletions

View File

@@ -365,12 +365,20 @@
};
config.allowUnfree = true;
};
cratesNix = inputs.crates-nix.mkLib {inherit pkgs;};
in {
devShells = {
default = pkgs.mkShell {
packages = with pkgs; [sops just openssl ast-grep];
};
};
packages = {
default = cratesNix.buildCrate "ironclaw" {
nativeBuildInputs = [pkgs.pkg-config];
buildInputs = [pkgs.openssl];
doCheck = false;
};
};
}
);
}