+
1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21 | {
+ inputs = {
+ nixpkgs.url = "github:NixOS/nixpkgs";
+ flake-utils.url = "github:numtide/flake-utils";
+ hello-flake.url = "git+https://codeberg.org/mhwombat/hello-flake";
+ };
+
+ outputs = { self, nixpkgs, flake-utils, hello-flake }:
+ flake-utils.lib.eachDefaultSystem (system:
+ let
+ pkgs = import nixpkgs { inherit system; };
+ in
+ {
+ devShells = rec {
+ default = pkgs.mkShell {
+ buildInputs = [ hello-flake.packages.${system}.hello ];
+ };
+ };
+ }
+ );
+}
+ |
+