Skip to content

Commit

Permalink
Update nixpkgs to release-23.05
Browse files Browse the repository at this point in the history
  • Loading branch information
chives101 committed Aug 19, 2023
1 parent 94277bb commit df8f8b5
Show file tree
Hide file tree
Showing 2 changed files with 9 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.

10 changes: 5 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.05";
};

outputs = { self, nixpkgs, }:
Expand All @@ -20,17 +20,17 @@
{
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 df8f8b5

Please sign in to comment.