summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2025-01-31 00:10:58 -0500
committerLLLL Colonq <llll@colonq>2025-01-31 00:10:58 -0500
commit7e1ccc9f3e83d7b807ffaa7706085437df69fb67 (patch)
tree2d9fb5c9651680b09087cf90fc8d71e9396253d9 /flake.nix
parente47c3dec92fac4ae824b7c413257ea2d612ad238 (diff)
Actually don't do that
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 11b9592..4fbff85 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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 = [