Skip to content

Commit

Permalink
Update nixpkgs to release-23.11
Browse files Browse the repository at this point in the history
  • Loading branch information
chives101 committed Feb 5, 2024
1 parent c5efaa4 commit 738c82a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
8 changes: 4 additions & 4 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "THE MIMBLEWIMBLE BLOCKCHAIN.";

inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/release-22.11";
nixpkgs.url = "github:NixOS/nixpkgs/release-23.11";
};

outputs = { self, nixpkgs, }:
Expand All @@ -20,17 +20,16 @@
{
grin = pkgs.rustPlatform.buildRustPackage {
pname = "grin";
version = "5.2.0-alpha.2";
version = "5.2.0";
src = ./.;

cargoLock = {
lockFile = ./Cargo.lock;
};

nativeBuildInputs = [ pkgs.llvmPackages_latest.clang ];
nativeBuildInputs = [ pkgs.clang ];
buildInputs = [ pkgs.ncurses ];
LIBCLANG_PATH =
"${pkgs.llvmPackages_latest.libclang.lib}/lib";
LIBCLANG_PATH = "${pkgs.libclang.lib}/lib";

# do not let test results block the build process
doCheck = false;
Expand Down

0 comments on commit 738c82a

Please sign in to comment.