Skip to content

Commit 738c82a

Browse files
committed
Update nixpkgs to release-23.11
1 parent c5efaa4 commit 738c82a

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

flake.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description = "THE MIMBLEWIMBLE BLOCKCHAIN.";
33

44
inputs = {
5-
nixpkgs.url = "github:NixOS/nixpkgs/release-22.11";
5+
nixpkgs.url = "github:NixOS/nixpkgs/release-23.11";
66
};
77

88
outputs = { self, nixpkgs, }:
@@ -20,17 +20,16 @@
2020
{
2121
grin = pkgs.rustPlatform.buildRustPackage {
2222
pname = "grin";
23-
version = "5.2.0-alpha.2";
23+
version = "5.2.0";
2424
src = ./.;
2525

2626
cargoLock = {
2727
lockFile = ./Cargo.lock;
2828
};
2929

30-
nativeBuildInputs = [ pkgs.llvmPackages_latest.clang ];
30+
nativeBuildInputs = [ pkgs.clang ];
3131
buildInputs = [ pkgs.ncurses ];
32-
LIBCLANG_PATH =
33-
"${pkgs.llvmPackages_latest.libclang.lib}/lib";
32+
LIBCLANG_PATH = "${pkgs.libclang.lib}/lib";
3433

3534
# do not let test results block the build process
3635
doCheck = false;

0 commit comments

Comments
 (0)