diff options
| author | LLLL Colonq <llll@colonq> | 2026-07-09 23:51:55 -0400 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2026-07-09 23:51:55 -0400 |
| commit | 2bdcaf319b1d74ffbaccf08a58336f804761beab (patch) | |
| tree | c21de6df74ec79b5574ad2b89fcc275d10847802 /gastro/packages.nix | |
Refactor into monorepo
Diffstat (limited to 'gastro/packages.nix')
| -rw-r--r-- | gastro/packages.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gastro/packages.nix b/gastro/packages.nix new file mode 100644 index 0000000..600bb0c --- /dev/null +++ b/gastro/packages.nix @@ -0,0 +1,16 @@ +pkgs: lcq: { + native = pkgs.stdenv.mkDerivation { + pname = "libcolonq-gastro"; + version = "git"; + src = ./.; + buildInputs = [ + lcq.prelude.native + lcq.qoi.native + pkgs.raylib + ]; + hardeningDisable = ["all"]; + installPhase = '' + make prefix=$out install + ''; + }; +} |
