nixpkgs/pkgs/applications/audio/monkeys-audio/default.nix
2023-05-25 04:30:35 +00:00

31 lines
788 B
Nix

{ lib
, stdenv
, fetchzip
, cmake
}:
stdenv.mkDerivation rec {
version = "10.13";
pname = "monkeys-audio";
src = fetchzip {
url = "https://monkeysaudio.com/files/MAC_${
builtins.concatStringsSep "" (lib.strings.splitString "." version)}_SDK.zip";
sha256 = "sha256-r+Xjp5q7ehrF34j1FndiKZ+y+FTG1ORXS+9p+R2KbOQ=";
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 ];
};
}