mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
32 lines
832 B
Nix
32 lines
832 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchzip
|
|
, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
version = "10.52";
|
|
pname = "monkeys-audio";
|
|
|
|
src = fetchzip {
|
|
url = "https://monkeysaudio.com/files/MAC_${
|
|
builtins.concatStringsSep "" (lib.strings.splitString "." finalAttrs.version)}_SDK.zip";
|
|
hash = "sha256-n+bQzvuCTt7dnqkPO592KKZeShmMlbp/KAXK0F2dlTg=";
|
|
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 ];
|
|
};
|
|
})
|