diff options
| author | LLLL Colonq <llll@colonq> | 2025-01-31 00:10:58 -0500 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2025-01-31 00:10:58 -0500 |
| commit | 7e1ccc9f3e83d7b807ffaa7706085437df69fb67 (patch) | |
| tree | 2d9fb5c9651680b09087cf90fc8d71e9396253d9 /flake.nix | |
| parent | e47c3dec92fac4ae824b7c413257ea2d612ad238 (diff) | |
Actually don't do that
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -14,9 +14,13 @@ flake-utils.follows = "flake-utils"; }; }; + st = { + url = "github:lcolonq/st"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; - outputs = { self, nixpkgs, crane, flake-utils, rust-overlay, nixpkgs-for-wasm-bindgen, ... }: + outputs = { self, nixpkgs, crane, flake-utils, rust-overlay, st, nixpkgs-for-wasm-bindgen, ... }: flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { @@ -67,7 +71,10 @@ }); in { - packages.default = game; + packages = { + default = game; + inherit st; + }; devShells.default = craneLib.devShell { packages = [ |
