Revision ca79ff4c6f9de395c395e510f04828c0f15423f1 authored by Victor Dumitrescu on 29 March 2024, 17:03:28 UTC, committed by Marge Bot on 03 April 2024, 14:34:26 UTC
1 parent 36bfc90
Raw File
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