diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 8 | 
1 files changed, 4 insertions, 4 deletions
@@ -9,8 +9,8 @@    } @ inputs: let      pname = "spine";      version = "0.14.0"; -    shell = ./shell.nix; # ./default.nix; -    devEnv = ./nixDevEnv.sh; # ./shell.nix; # ./default.nix; # ./.envrc; +    shell = ./shell.nix; +    devEnv = ./nixDevEnv.sh;      supportedSystems = ["x86_64-linux"]; # [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];      forAllSystems = nixpkgs.lib.genAttrs supportedSystems;      nixpkgsFor = forAllSystems (system: import nixpkgs {inherit system;}); # nixpkgs instantiated for supported system types @@ -22,8 +22,8 @@      localOverlay = (final: prev: {        ldc = prev.callPackage ./nix-overlays/ldc {  };        dmd = prev.callPackage ./nix-overlays/dmd {  }; -      dub = prev.callPackage ./nix-overlays/dub {  };       # -> ? -      #gdc = prev.callPackage ./nix-overlays/gdc {  };      # empty +      dub = prev.callPackage ./nix-overlays/dub {  }; +      #gdc = prev.callPackage ./nix-overlays/gdc {  };      });      pkgsForSystem = system: import nixpkgs {        overlays = [  | 
