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