monkeysAudio: 10.76 -> 10.81

License was simply updated in the website, with no release notes or a
Git commit available unfortunately.
This commit is contained in:
jopejoe1
2024-12-01 17:40:20 +02:00
committed by Doron Behar
parent 836aba1612
commit ddeb99747d
+9 -6
View File
@@ -5,15 +5,21 @@
}:
stdenv.mkDerivation (finalAttrs: {
version = "10.76";
version = "10.81";
pname = "monkeys-audio";
src = fetchzip {
url = "https://monkeysaudio.com/files/MAC_${
builtins.concatStringsSep "" (lib.strings.splitString "." finalAttrs.version)}_SDK.zip";
hash = "sha256-ropQZraOombq6zG5vXU/kBtQggy30ErbU79gbEtrIxs=";
hash = "sha256-sI2u+H/ewva9r+g5xSNqal0DMul+a9Y4FV6dEzulvSI=";
stripRoot = false;
};
env.NIX_CFLAGS_COMPILE = toString [
# Otherwise, >> related build errors are encountered
"-std=c++11"
];
nativeBuildInputs = [
cmake
];
@@ -22,10 +28,7 @@ stdenv.mkDerivation (finalAttrs: {
description = "APE codec and decompressor";
platforms = platforms.linux;
mainProgram = "mac";
# This is not considered a GPL license, but it seems rather free although
# it's not standard, see a quote of it:
# https://github.com/NixOS/nixpkgs/pull/171682#issuecomment-1120260551
license = licenses.free;
license = licenses.bsd3;
maintainers = with maintainers; [ doronbehar ];
};
})