Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions nix/sources.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"homepage": "",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "6e31010bb321acfebdb43952d9cde86eaf0e70ad",
"sha256": "0yfc5c8qy7dklag82y4d823d0i25r3flfxqbzyq6wgn94k9j5cpf",
"rev": "2b78ecc45e163d655c08c9a4cffb4a91c66d0493",
"sha256": "092l8qa82w97hj2pal2hzdzxnw20jya5pz9x2igj7swhpzmhxyzk",
"type": "tarball",
"url": "https://github.com/NixOS/nixpkgs/archive/6e31010bb321acfebdb43952d9cde86eaf0e70ad.tar.gz",
"url": "https://github.com/NixOS/nixpkgs/archive/2b78ecc45e163d655c08c9a4cffb4a91c66d0493.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
}
}
8 changes: 7 additions & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,17 @@

pkgs.mkShell {
nativeBuildInputs = [
pkgs.go_1_21
pkgs.go_1_24
pkgs.clojure
];

shellHook = ''
export MACOSX_DEPLOYMENT_TARGET=12.0

# Remove xcbuild's xcrun from PATH
export PATH=$(echo "$PATH" | sed "s|${pkgs.xcbuild.xcrun}/bin||g")

# Let Xcode pick its own developer dir
unset DEVELOPER_DIR
'';
}