monkeysAudio 10.10 -> 10.11 https://repology.org/project/monkeys-audio/versions attrpath: monkeysAudio Checking auto update branch... No auto update branch exists Old version 10.10" not present in master derivation file with contents: { lib , stdenv , fetchzip , cmake }: stdenv.mkDerivation rec { version = "10.11"; pname = "monkeys-audio"; src = fetchzip { url = "https://monkeysaudio.com/files/MAC_${ builtins.concatStringsSep "" (lib.strings.splitString "." version)}_SDK.zip"; sha256 = "sha256-sA1JXRbyHMHBCsWau9GrlxeRiCzxZfCTuLFebZmIoRE="; stripRoot = false; }; nativeBuildInputs = [ cmake ]; meta = with lib; { description = "APE codec and decompressor"; platforms = platforms.linux; # 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 ]; }; }