Skip to content

Commit

Permalink
feat: nix support
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjercan committed Oct 21, 2024
1 parent 8f4dc40 commit 8bc9103
Showing 16 changed files with 96 additions and 11,017 deletions.
61 changes: 61 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 34 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
description = "A basic flake";

inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";

outputs = {
self,
nixpkgs,
flake-utils,
}: (
flake-utils.lib.eachDefaultSystem
(system: let
pkgs = import nixpkgs {
inherit system;

config = {
allowUnfree = true;
};
};
in {
# packages.default = { };
devShells.default =
pkgs.mkShell
{
name = "env-shell";

nativeBuildInputs = with pkgs; [
raylib
];
};
})
);
}
2 changes: 0 additions & 2 deletions lib/mallocator/flags.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
-dynamic-linker
/lib64/ld-linux-x86-64.so.2
-lc
2 changes: 0 additions & 2 deletions lib/random/flags.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
-dynamic-linker
/lib64/ld-linux-x86-64.so.2
-lc
5 changes: 1 addition & 4 deletions lib/raylib/flags.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
-dynamic-linker
/lib64/ld-linux-x86-64.so.2
-LCOOL_HOME/lib/raylib/raylib-5.0_linux_amd64/lib/
-l:libraylib.a
-lraylib
-lm
-lc
2,128 changes: 0 additions & 2,128 deletions lib/raylib/raylib-5.0_linux_amd64/CHANGELOG

This file was deleted.

16 changes: 0 additions & 16 deletions lib/raylib/raylib-5.0_linux_amd64/LICENSE

This file was deleted.

150 changes: 0 additions & 150 deletions lib/raylib/raylib-5.0_linux_amd64/README.md

This file was deleted.

Loading

0 comments on commit 8bc9103

Please sign in to comment.