diff options
Diffstat (limited to 'qoi/packages.nix')
| -rw-r--r-- | qoi/packages.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/qoi/packages.nix b/qoi/packages.nix new file mode 100644 index 0000000..d66e00b --- /dev/null +++ b/qoi/packages.nix @@ -0,0 +1,15 @@ +pkgs: lcq: { + native = pkgs.stdenv.mkDerivation { + pname = "libcolonq-qoi"; + version = "git"; + src = ./.; + buildInputs = [ + lcq.prelude.native + pkgs.raylib + ]; + hardeningDisable = ["all"]; + installPhase = '' + make prefix=$out install + ''; + }; +} |
