summaryrefslogtreecommitdiff
path: root/json/packages.nix
blob: 7c3e6928e6054aafb93a8ca0b04bc57f3f5c1b07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
    '';
  };
}