this repo has no description

feat: attempting to make an actual package lol

+6 -6
+6 -6
flake.nix
··· 7 7 }; 8 8 9 9 outputs = { flake-parts, ... } @ inputs : 10 - # let 11 - # system = "x86_64-linux"; 12 - # pkgs = nixpkgs.legacyPackages.${system}; 13 - # in 14 10 flake-parts.lib.mkFlake { inherit inputs; } { 15 11 systems = [ "x86_64-linux" ]; 16 12 17 - perSystem = { config, self', inputs', pkgs, system, ... }: { 18 - 13 + perSystem = { config, self', inputs', pkgs, system, ... }: 14 + { 19 15 devShells.default = pkgs.mkShell { 20 16 nativeBuildInputs = with pkgs; [ babashka ]; 17 + }; 18 + 19 + legacyPackages.scripts = { 20 + grimblastr = pkgs.writers.writeBabashkaBin "grimblastr" {} (builtins.readFile ./grimblastr/grimblastr.bb); 21 21 }; 22 22 }; 23 23 };