Sha256: 608a7b92a49b4e6bf6484e443fa046eea6ec7105b9ebe8ad032380700cd504cb

Contents?: true

Size: 693 Bytes

Versions: 4

Compression:

Stored size: 693 Bytes

Contents

{
  description = "HashiCorp Vagrant project";

  inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
  inputs.flake-utils.url = "github:numtide/flake-utils";

  outputs = { self, nixpkgs, flake-utils }:
    let
      localOverlay = import ./nix/overlay.nix;
      overlays = [ localOverlay ];
    in flake-utils.lib.eachDefaultSystem (system:
      let
        pkgs = import nixpkgs {
          inherit system overlays;
        };
      in {
        legacyPackages = pkgs;
        inherit (pkgs) devShell;
      }) // {
        # platform independent attrs
        overlay = final: prev: (nixpkgs.lib.composeManyExtensions overlays) final prev;
        inherit overlays;
      };
}

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
vagrant-unbundled-2.3.6.0 flake.nix
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/flake.nix
vagrant-unbundled-2.3.3.0 flake.nix
vagrant-unbundled-2.3.2.0 flake.nix