Revision f37fbade576086444e712736390131a9b10d1904 authored by Pierrick Couderc on 04 June 2023, 06:24:46 UTC, committed by Pierrick Couderc on 16 June 2023, 07:05:09 UTC
Unparsable inputs are still out of the loop
1 parent f260907
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