https://gitlab.com/tezos/tezos
Raw File
Tip revision: bfe7170a4b19b1ad47bbae34aa8bd49142cdae7c authored by Alain Mebsout on 01 June 2023, 10:59:15 UTC
DAC/Client: move observer client out of proto dir
Tip revision: bfe7170
opam-repo.nix
{runCommand}: let
  opam-repository-rev = builtins.readFile (
    runCommand
    "opam-repo-rev"
    {
      src = ../scripts/version.sh;
    }
    ''
      . $src
      echo -n $full_opam_repository_tag > $out
    ''
  );
in
  fetchTarball "https://github.com/ocaml/opam-repository/archive/${opam-repository-rev}.tar.gz"
back to top