/ flake.nix
flake.nix
1 { 2 description = "Blender Addon Development"; 3 4 inputs = { 5 nixpkgs.url = "github:nixos/nixpkgs"; 6 flake-utils.url = "github:numtide/flake-utils"; 7 }; 8 9 outputs = { self, nixpkgs, flake-utils }: 10 flake-utils.lib.eachDefaultSystem (system: 11 let pkgs = nixpkgs.legacyPackages.${system}; 12 in 13 { 14 devShell = pkgs.mkShell { 15 buildInputs = [ 16 pkgs.blender 17 ]; 18 }; 19 }); 20 }