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