blob: bce9c82701f619ebe13502c82f1196c0583c42b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
pkgs: lcq: {
native = pkgs.stdenv.mkDerivation {
pname = "libcolonq-elf";
version = "git";
src = ./.;
hardeningDisable = ["all"];
buildInputs = [
lcq.prelude.native
];
installPhase = ''
make prefix=$out install
'';
};
}
|