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