Revision 8459aaf8d761cade52f220b042a499092f956485 authored by Neo on 03 December 2023, 15:56:07 UTC, committed by Marge Bot on 19 January 2024, 09:24:22 UTC
1 parent 3b9acfd
Raw File
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