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
788 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 {
2023-05-07 09:31:35 +00:00
version = "10.11";
2023-03-02 08:58:24 +00:00
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";
2023-05-07 09:31:35 +00:00
sha256 = "sha256-sA1JXRbyHMHBCsWau9GrlxeRiCzxZfCTuLFebZmIoRE=";
2023-03-02 08:58:24 +00:00
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
};
}