Revision 9239631771d8bd60674225f675ea68f72b2d05fc authored by pecornilleau on 08 August 2023, 08:10:34 UTC, committed by pecornilleau on 08 August 2023, 10:16:45 UTC
1 parent 58028e1
Raw File
sources.nix
let
  opam-nix-integration = import (
    fetchTarball {
      url = "https://github.com/vapourismo/opam-nix-integration/archive/ea79c9787ef571724b49157c003b832b83a133a5.tar.gz";
      sha256 = "1m2fsb3np0a0mwh8gbpazf4mxcsqc64hiaxx2f9njcksx1hjvsyh";
    }
  );

  rust-overlay = import (
    fetchTarball {
      url = "https://github.com/oxalica/rust-overlay/archive/b91706f9d5a68fecf97b63753da8e9670dff782b.tar.gz";
      sha256 = "1c34aihrnwv15l8hyggz92rk347z05wwh00h33iw5yyjxkvb8mqc";
    }
  );

  pkgs =
    import
    (fetchTarball {
      url = "https://github.com/NixOS/nixpkgs/archive/6025d713d198ec296eaf27a1f2f78983eccce4d8.tar.gz";
      sha256 = "0fa6nd1m5lr4fnliw21ppc4qdd4s85x448967333dvmslnvj35xi";
    })
    {overlays = [opam-nix-integration.overlay rust-overlay];};
in {
  inherit opam-nix-integration rust-overlay pkgs;
}
back to top