Page MenuHomePhorge

flake.nix
No OneTemporary

Size
508 B
Referenced Files
None
Subscribers
None

flake.nix

{ description = "ant dev shell";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system}; in {
devShells.default = pkgs.mkShell {
packages = with pkgs; [ pkg-config libossp_uuid libsodium openssl ];
shellHook = ''
export CC="ccache clang"
export MACOSX_DEPLOYMENT_TARGET="15.0"
'';
};
}); }

File Metadata

Mime Type
text/plain
Expires
Sun, May 3, 9:43 AM (17 h, 14 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
521280
Default Alt Text
flake.nix (508 B)

Event Timeline