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 /elf/packages.nix | |
Refactor into monorepo
Diffstat (limited to 'elf/packages.nix')
| -rw-r--r-- | elf/packages.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/elf/packages.nix b/elf/packages.nix new file mode 100644 index 0000000..bce9c82 --- /dev/null +++ b/elf/packages.nix @@ -0,0 +1,14 @@ +pkgs: lcq: { + native = pkgs.stdenv.mkDerivation { + pname = "libcolonq-elf"; + version = "git"; + src = ./.; + hardeningDisable = ["all"]; + buildInputs = [ + lcq.prelude.native + ]; + installPhase = '' + make prefix=$out install + ''; + }; +} |
