Skip to content

Commit 08e8e6f

Browse files
committed
fix: hash troubles with nix flake.
1 parent 44314a8 commit 08e8e6f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

celestia-node.nix

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
pkgs.stdenv.mkDerivation rec {
44
name = "celestia-node";
55
version = "v0.13.2"; # Update to the desired version
6+
commit_hash = "c1b41b0973e9d140b7651295e879d27ad47f42c4";
67

7-
src = pkgs.fetchgit {
8+
src = builtins.fetchGit {
89
url = "https://github.com/celestiaorg/celestia-node.git";
9-
rev = version;
10-
sha256 = "YCwIJ55lkLcViVzmAeCIrPtc9mJ/N0eswKrlu9BEC3g=";
11-
leaveDotGit = true;
10+
ref = version;
11+
rev = commit_hash;
1212
};
1313

1414
nativeBuildInputs = with pkgs; [

0 commit comments

Comments
 (0)