tangled
alpha
login
or
join now
m1emi1em.dev
/
bb-scripts
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
feat: attempting to make an actual package lol
m1emi1em.dev
11 months ago
2aa94894
47309488
+6
-6
1 changed file
expand all
collapse all
unified
split
flake.nix
+6
-6
flake.nix
···
7
};
8
9
outputs = { flake-parts, ... } @ inputs :
10
-
# let
11
-
# system = "x86_64-linux";
12
-
# pkgs = nixpkgs.legacyPackages.${system};
13
-
# in
14
flake-parts.lib.mkFlake { inherit inputs; } {
15
systems = [ "x86_64-linux" ];
16
17
-
perSystem = { config, self', inputs', pkgs, system, ... }: {
18
-
19
devShells.default = pkgs.mkShell {
20
nativeBuildInputs = with pkgs; [ babashka ];
0
0
0
0
21
};
22
};
23
};
···
7
};
8
9
outputs = { flake-parts, ... } @ inputs :
0
0
0
0
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
};