Skip to content

Commit 9f6bc9f

Browse files
committed
Update nixpkgs to release-23.11
1 parent 163ca39 commit 9f6bc9f

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
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: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,45 +2,45 @@
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

8-
outputs = { self, nixpkgs, }:
8+
outputs =
9+
{ self, nixpkgs }:
910
let
10-
forAllSystems = with nixpkgs;
11-
lib.genAttrs lib.systems.flakeExposed;
11+
forAllSystems = with nixpkgs; lib.genAttrs lib.systems.flakeExposed;
1212

13-
nixpkgsFor = forAllSystems (system: import nixpkgs
14-
{ inherit system; overlays = [ self.overlay ]; }
13+
nixpkgsFor = forAllSystems (
14+
system:
15+
import nixpkgs {
16+
inherit system;
17+
overlays = [ self.overlay ];
18+
}
1519
);
1620
in
1721
{
18-
overlay = final: prev:
19-
with final;
20-
{
22+
overlay =
23+
final: prev: with final; {
2124
grin = pkgs.rustPlatform.buildRustPackage {
2225
pname = "grin";
23-
version = "5.2.0-alpha.2";
26+
version = "5.3.0";
2427
src = ./.;
2528

2629
cargoLock = {
2730
lockFile = ./Cargo.lock;
2831
};
2932

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

3537
# do not let test results block the build process
3638
doCheck = false;
3739
};
3840
};
3941

40-
packages = forAllSystems (
41-
system: {
42-
default = nixpkgsFor.${system}.grin;
43-
}
44-
);
42+
packages = forAllSystems (system: {
43+
default = nixpkgsFor.${system}.grin;
44+
});
4545
};
4646
}

0 commit comments

Comments
 (0)