e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
31 lines
834 B
Nix
31 lines
834 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchzip
|
|
, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
version = "10.40";
|
|
pname = "monkeys-audio";
|
|
|
|
src = fetchzip {
|
|
url = "https://monkeysaudio.com/files/MAC_${
|
|
builtins.concatStringsSep "" (lib.strings.splitString "." finalAttrs.version)}_SDK.zip";
|
|
sha256 = "sha256-UHQSZM5AjODtgg0Pgi2N8tLKRI9Qg1CotPx2KoJk1wQ=";
|
|
stripRoot = false;
|
|
};
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
meta = with lib; {
|
|
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;
|
|
maintainers = with maintainers; [ doronbehar ];
|
|
};
|
|
})
|