js-spectre @main -
refs -
log -
-
https://git.jolheiser.com/js-spectre.git
Signature
-----BEGIN SSH SIGNATURE-----
U1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAgBTEvCQk6VqUAdN2RuH6bj1dNkY
oOpbPWj+jw4ua1B1cAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5
AAAAQA7z4L8Wds/iQ7N5DEc9HWDrfZHX44FH7Fvuok/SIEohr4BeBus6wWCw7ZI/nOsZz9
c5RGipArCy7uA+OFUNhgU=
-----END SSH SIGNATURE-----
diff --git a/flake.lock b/flake.lock
new file mode 100644
index 0000000000000000000000000000000000000000..97769397ca22ba1fd9cacee40445f60057ab0bb3
--- /dev/null
+++ b/flake.lock
@@ -0,0 +1,27 @@
+{
+ "nodes": {
+ "nixpkgs": {
+ "locked": {
+ "lastModified": 1738797219,
+ "narHash": "sha256-KRwX9Z1XavpgeSDVM/THdFd6uH8rNm/6R+7kIbGa+2s=",
+ "owner": "nixos",
+ "repo": "nixpkgs",
+ "rev": "1da52dd49a127ad74486b135898da2cef8c62665",
+ "type": "github"
+ },
+ "original": {
+ "owner": "nixos",
+ "ref": "nixpkgs-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "root": {
+ "inputs": {
+ "nixpkgs": "nixpkgs"
+ }
+ }
+ },
+ "root": "root",
+ "version": 7
+}
diff --git a/flake.nix b/flake.nix
new file mode 100644
index 0000000000000000000000000000000000000000..b628a156a48505be7c6450b98010f068cb609c4f
--- /dev/null
+++ b/flake.nix
@@ -0,0 +1,32 @@
+{
+ inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
+ outputs =
+ { nixpkgs, ... }:
+ let
+ systems = [
+ "x86_64-linux"
+ "i686-linux"
+ "x86_64-darwin"
+ "aarch64-linux"
+ "armv6l-linux"
+ "armv7l-linux"
+ ];
+ forAllSystems = f: nixpkgs.lib.genAttrs systems f;
+ in
+ {
+ devShells = forAllSystems (
+ system:
+ let
+ pkgs = import nixpkgs { inherit system; };
+ in
+ {
+ default = pkgs.mkShell {
+ nativeBuildInputs = with pkgs; [
+ nodejs
+ typescript-language-server
+ ];
+ };
+ }
+ );
+ };
+}