Package proxy with nix

This commit is contained in:
Alexander
2026-04-10 14:44:07 +02:00
parent 5ec0004e4c
commit c5f6962104
2 changed files with 20 additions and 5 deletions
+5 -5
View File
@@ -17,14 +17,14 @@
let
pkgs = import nixpkgs {
inherit system;
config.allowUnfreePredicate =
pkg:
builtins.elem (pkgs.lib.getName pkg) [
"claude-code"
];
config.allowUnfree = true;
};
in
{
packages = {
proxy = pkgs.callPackage ./package.nix {};
};
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
go