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