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