diff --git a/.envrc b/.envrc deleted file mode 100644 index 3550a30..0000000 --- a/.envrc +++ /dev/null @@ -1 +0,0 @@ -use flake diff --git a/clay b/clay deleted file mode 160000 index c9e1a63..0000000 --- a/clay +++ /dev/null @@ -1 +0,0 @@ -Subproject commit c9e1a63378ecfba448ecd42796838264b10adafb diff --git a/flake.lock b/flake.lock deleted file mode 100644 index 41b411f..0000000 --- a/flake.lock +++ /dev/null @@ -1,64 +0,0 @@ -{ - "nodes": { - "flake-utils": { - "inputs": { - "systems": [ - "systems" - ] - }, - "locked": { - "lastModified": 1731533236, - "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, - "nixpkgs": { - "locked": { - "lastModified": 1735595149, - "narHash": "sha256-6jNmY7BaooArDpOhT8QbGxR0x8as43AJUoHfm1rJY1M=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "464fe85c27bd5761781a2773526ef9c1b0184dda", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "release-24.11", - "repo": "nixpkgs", - "type": "github" - } - }, - "root": { - "inputs": { - "flake-utils": "flake-utils", - "nixpkgs": "nixpkgs", - "systems": "systems" - } - }, - "systems": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } - } - }, - "root": "root", - "version": 7 -} diff --git a/flake.nix b/flake.nix deleted file mode 100644 index 13c154f..0000000 --- a/flake.nix +++ /dev/null @@ -1,46 +0,0 @@ -{ - description = "A basic flake with a shell"; - inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/release-24.11"; - systems.url = "github:nix-systems/default"; - flake-utils = { - url = "github:numtide/flake-utils"; - inputs.systems.follows = "systems"; - }; - }; - - outputs = - { nixpkgs, flake-utils, ... }: - flake-utils.lib.eachDefaultSystem ( - system: - let - pkgs = nixpkgs.legacyPackages.${system}; - in - { - devShells.default = pkgs.mkShell { - LD_LIBRARY_PATH = "$LD_LIBRARY_PATH:${ - with pkgs; - pkgs.lib.makeLibraryPath [ - # for raylib and openGL - pkgs.libGL - pkgs.xorg.libX11 - pkgs.xorg.libXi - - # for SDL and SDL2 - pkgs.SDL2 - pkgs.SDL2_mixer - pkgs.SDL - - # for vulkan and GLFW - pkgs.vulkan-loader - pkgs.glfw - ] - }"; - packages = with pkgs; [ - odin - clang - ]; - }; - } - ); -}