biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / audio / monkeys-audio / default.nix
blobc68d14b28f990264308b7170645026cec5c22b93
1 { lib
2 , stdenv
3 , fetchzip
4 , cmake
5 }:
7 stdenv.mkDerivation (finalAttrs: {
8   version = "10.60";
9   pname = "monkeys-audio";
11   src = fetchzip {
12     url = "https://monkeysaudio.com/files/MAC_${
13       builtins.concatStringsSep "" (lib.strings.splitString "." finalAttrs.version)}_SDK.zip";
14     hash = "sha256-llOo9G65UDDCzaSahq5qssw6SmOJ5C9qS2bdXB/pKF0=";
15     stripRoot = false;
16   };
17   nativeBuildInputs = [
18     cmake
19   ];
21   meta = with lib; {
22     description = "APE codec and decompressor";
23     platforms = platforms.linux;
24     mainProgram = "mac";
25     # This is not considered a GPL license, but it seems rather free although
26     # it's not standard, see a quote of it:
27     # https://github.com/NixOS/nixpkgs/pull/171682#issuecomment-1120260551
28     license = licenses.free;
29     maintainers = with maintainers; [ doronbehar ];
30   };