From 37f31d7050828f5fe4888bfeb9b3d2eee4d53d8b Mon Sep 17 00:00:00 2001 From: Jose Storopoli Date: Sat, 6 Jan 2024 18:29:53 -0300 Subject: [PATCH] feat(flake): update pkgs to 23.11 and pin bitcoind to 0.25 --- flake.lock | 8 ++++---- flake.nix | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/flake.lock b/flake.lock index 66c1f8b8d4..88310f9d1e 100644 --- a/flake.lock +++ b/flake.lock @@ -112,16 +112,16 @@ }, "nixpkgs": { "locked": { - "lastModified": 1704018918, - "narHash": "sha256-erjg/HrpC9liEfm7oLqb8GXCqsxaFwIIPqCsknW5aFY=", + "lastModified": 1704420045, + "narHash": "sha256-C36QmoJd5tdQ5R9MC1jM7fBkZW9zBUqbUCsgwS6j4QU=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "2c9c58e98243930f8cb70387934daa4bc8b00373", + "rev": "c1be43e8e837b8dbee2b3665a007e761680f0c3d", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixos-23.05", + "ref": "nixos-23.11", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index b5d52b6f59..b92f38d83c 100644 --- a/flake.nix +++ b/flake.nix @@ -3,7 +3,7 @@ inputs = { # stable nixpkgs - nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11"; # pin bitcoind to a specific version # find instructions here: # @@ -141,7 +141,7 @@ inherit buildInputs; inherit nativeBuildInputs; # Additional environment variables can be set directly - BITCOIND_EXEC = "${pkgs.bitcoind}/bin/bitcoind"; + BITCOIND_EXEC = "${pkgs-bitcoind.bitcoind}/bin/bitcoind"; ELECTRS_EXEC = "${pkgs-kitman.esplora}/bin/esplora"; };