diff --git a/pkgs/embedded/embox/default.nix b/pkgs/embedded/embox/default.nix
index bf01b20c7ae8f3a5fcd5159a5a2f84f0b20530b4..0359df444f177d80a3feeaca2c93481afbb6c207 100644
--- a/pkgs/embedded/embox/default.nix
+++ b/pkgs/embedded/embox/default.nix
@@ -57,7 +57,7 @@ preBuild = ''
patchShebangs ./mk
mkdir -p ./download
ln -s ${third-party.cjson} ./download/cjson-v1.7.16.tar.gz
'';
installPhase =
diff --git a/pkgs/embedded/embox/third-party.json b/pkgs/embedded/embox/third-party.json
index eb7c0c84e85980eb90f2cf232a84a76f568368e4..b88950ab89d39d4540dc68401b3ba9d902bf4e87 100644
--- a/pkgs/embedded/embox/third-party.json
+++ b/pkgs/embedded/embox/third-party.json
@@ -1,7 +1,7 @@
{
"acpica-unix": {
},
"cjson": {
"url": "https://github.com/DaveGamble/cJSON/archive/refs/tags/v1.7.16.tar.gz",
diff --git a/pkgs/misc/cadzinho/default.nix b/pkgs/misc/cadzinho/default.nix
index 7ce15bce54d921da36d7b30305d6bccef5ff38de..4f435822b21b82ff8a56c39c0ac423272f9af292 100644
--- a/pkgs/misc/cadzinho/default.nix
+++ b/pkgs/misc/cadzinho/default.nix
@@ -1,16 +1,22 @@
-{ lib, stdenv, fetchFromGitHub, SDL2, glew, lua }:
+{ lib, stdenv, fetchFromGitHub, SDL2, glew, lua, desktopToDarwinBundle }:
stdenv.mkDerivation rec {
pname = "cadzinho";
src = fetchFromGitHub {
owner = "zecruel";
repo = "CadZinho";
rev = version;
};
buildInputs = [ SDL2 glew lua ];
makeFlags = [ "CC:=$(CC)" ];
@@ -18,7 +24,11 @@
NIX_CFLAGS_COMPILE = "-Wno-format-security";
installPhase = ''
install -Dm755 cadzinho -t $out/bin
'';
meta = with lib; {
@@ -27,5 +37,6 @@ inherit (src.meta) homepage;
license = licenses.mit;
maintainers = [ maintainers.sikmir ];
platforms = platforms.unix;
};
}
application/octet-stream
This content has been proxied by September (3851b).