diff --git a/pkgs/default.nix b/pkgs/default.nix
index 7db0a3c51cfb5526ffdcfc27b89974357d2da3e5..d07e16c6e677988d1cee39c3250bb739a03a3306 100644
--- a/pkgs/default.nix
+++ b/pkgs/default.nix
@@ -324,8 +324,8 @@ arduinojson = callPackage ./misc/arduinojson { };
ascii-dash = callPackage ./misc/ascii-dash { };
bash-completor = callPackage ./misc/bash-completor { };
btpd = callPackage ./misc/btpd { };
inherit (darwin.apple_sdk.frameworks) AppKit;
inherit (darwin.apple_sdk_11_0.frameworks) AppKit;
};
cadzinho = callPackage ./misc/cadzinho {
lua = pkgs.lua5_4;
diff --git a/pkgs/misc/bwh/default.nix b/pkgs/misc/bwh/default.nix
index a2ef3397cd09d8cdebc483ebeaf094fa21fa55be..5092dac9208f53d18ce1e0e7f198eaf2c9518093 100644
--- a/pkgs/misc/bwh/default.nix
+++ b/pkgs/misc/bwh/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitea, cmake, pkg-config, SDL2, the-foundation, AppKit }:
+{ lib, stdenv, fetchFromGitea, cmake, pkg-config, makeWrapper, SDL2, the-foundation, AppKit }:
stdenv.mkDerivation rec {
pname = "bwh";
@@ -12,13 +12,15 @@ rev = "v${version}";
hash = "sha256-POKjvUGFS3urc1aqOvfCAApUnRxoZhU725eYRAS4Z2w=";
};
buildInputs = [ SDL2 the-foundation ] ++ lib.optional stdenv.isDarwin AppKit;
meta = with lib; {
description = "Bitwise Harmony - simple synth tracker";
@@ -26,6 +28,6 @@ homepage = "https://git.skyjake.fi/skyjake/bwh";
license = licenses.bsd2;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.unix;
};
}
diff --git a/pkgs/misc/pvs-studio/default.nix b/pkgs/misc/pvs-studio/default.nix
index ca956786151bc3ab83616d0a16117e317fae290b..359abe023e53de5173365fe4cf0dcfb4f42591c0 100644
--- a/pkgs/misc/pvs-studio/default.nix
+++ b/pkgs/misc/pvs-studio/default.nix
@@ -10,13 +10,13 @@ }.${system} or throwSystem;
in
stdenv.mkDerivation (finalAttrs: {
pname = "pvs-studio";
src = fetchurl {
url = "https://cdn.pvs-studio.com/pvs-studio-${finalAttrs.version}-${suffix}.tgz";
hash = {
x86_64-linux = "sha256-Kw6d1rpFspPiWFvcWGXdzSx9lcmCcXUkT6PBA87/B/c=";
x86_64-darwin = "sha256-f7Gi0dRMcox+4x9FWMdL/ucmKT3DpPpFDQm8HLVRtY8=";
x86_64-linux = "sha256-Jno4bnrgV4VS86sd2LcPJtGn7qo80mCA1htpiuFf/eQ=";
x86_64-darwin = "sha256-T8i+slwpOOPKCLlZ0inz3WSAQNytZrysBGv5FA0IkqE=";
}.${system} or throwSystem;
};
application/octet-stream
This content has been proxied by September (3851b).