about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/audio/monkeys-audio/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/audio/monkeys-audio/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/audio/monkeys-audio/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/audio/monkeys-audio/default.nix b/nixpkgs/pkgs/applications/audio/monkeys-audio/default.nix
new file mode 100644
index 000000000000..d4da27dd3639
--- /dev/null
+++ b/nixpkgs/pkgs/applications/audio/monkeys-audio/default.nix
@@ -0,0 +1,31 @@
+{ 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 ];
+  };
+})