Diffusers.jl/flake.nix

12 lines
354 B
Nix
Raw Normal View History

2023-07-02 13:55:35 +00:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
2023-08-08 19:22:42 +00:00
in { devShell = pkgs.mkShell { buildInputs = with pkgs; [ julia ]; }; });
2023-07-02 13:55:35 +00:00
}