this repo has no description
1{
2 inputs = {
3 nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
4 flake-parts = {
5 url = "github:hercules-ci/flake-parts";
6 };
7 };
8
9 outputs = { flake-parts, ... } @ inputs :
10 flake-parts.lib.mkFlake { inherit inputs; } {
11 systems = [ "x86_64-linux" ];
12
13 perSystem = { config, self', inputs', pkgs, system, ... }:
14 {
15 devShells.default = pkgs.mkShell {
16 nativeBuildInputs = with pkgs; [ babashka ];
17 };
18
19 legacyPackages.scripts = {
20 grimblastr = pkgs.writers.writeBabashkaBin "grimblastr" {} (builtins.readFile ./grimblastr/grimblastr.bb);
21 };
22 };
23 };
24}