nixpkgs/pkgs/applications/audio/monkeys-audio/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
787 B
Nix
Raw Normal View History

2023-03-02 08:58:24 +00:00
{ lib
, stdenv
, fetchzip
, cmake
}:
2023-03-02 08:58:24 +00:00
stdenv.mkDerivation rec {
version = "9.20";
pname = "monkeys-audio";
2023-03-02 08:58:24 +00:00
src = fetchzip {
url = "https://monkeysaudio.com/files/MAC_${
builtins.concatStringsSep "" (lib.strings.splitString "." version)}_SDK.zip";
sha256 = "sha256-8cJ88plR9jrrLdzRHzRotGBrn6qIqOWvl+oOTXxY/TE=";
stripRoot = false;
};
2023-03-02 08:58:24 +00:00
nativeBuildInputs = [
cmake
];
2014-01-28 17:11:00 +00:00
meta = with lib; {
2023-03-02 08:58:24 +00:00
description = "APE codec and decompressor";
2014-01-28 17:11:00 +00:00
platforms = platforms.linux;
2022-05-07 18:31:35 +00:00
# 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 ];
2014-01-28 17:11:00 +00:00
};
}