We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44314a8 commit 08e8e6fCopy full SHA for 08e8e6f
celestia-node.nix
@@ -3,12 +3,12 @@
3
pkgs.stdenv.mkDerivation rec {
4
name = "celestia-node";
5
version = "v0.13.2"; # Update to the desired version
6
+ commit_hash = "c1b41b0973e9d140b7651295e879d27ad47f42c4";
7
- src = pkgs.fetchgit {
8
+ src = builtins.fetchGit {
9
url = "https://github.com/celestiaorg/celestia-node.git";
- rev = version;
10
- sha256 = "YCwIJ55lkLcViVzmAeCIrPtc9mJ/N0eswKrlu9BEC3g=";
11
- leaveDotGit = true;
+ ref = version;
+ rev = commit_hash;
12
};
13
14
nativeBuildInputs = with pkgs; [
0 commit comments