https://gitlab.com/tezos/tezos
Raw File
Tip revision: 5051ae654df96a8b21991c9771cac0c2d7ac6010 authored by Pierrick Couderc on 05 March 2024, 18:54:24 UTC
EVM/Kernel: bufferize the transactions from the delayed inbox
Tip revision: 5051ae6
tezos-opam-repo.nix
{runCommand}: let
  revision = builtins.readFile (
    runCommand
    "tezos-opam-repo-rev"
    {
      src = ../scripts/version.sh;
    }
    ''
      . $src
      echo -n $opam_repository_tag > $out
    ''
  );
in
  fetchTarball "https://gitlab.com/tezos/opam-repository/-/archive/${revision}/opam-repository-${revision}.tar.gz"
back to top