2022-09-30 11:47:45 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "miniaudio";
|
2023-04-12 12:48:02 +00:00
|
|
|
version = "0.11.14";
|
2022-09-30 11:47:45 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mackron";
|
|
|
|
repo = "miniaudio";
|
2023-04-12 12:48:02 +00:00
|
|
|
rev = "9a7663496fc06f7a9439c752fd7666ca93328c20";
|
2022-11-21 17:40:18 +00:00
|
|
|
# upstream does not maintain tags:
|
|
|
|
# https://github.com/mackron/miniaudio/issues/273#issuecomment-783861269
|
2023-04-12 12:48:02 +00:00
|
|
|
hash = "sha256-v/Eo4/CYcpB4tbOoy1gPqk6PUvkQIZNWrweG3l5EcMk=";
|
2022-09-30 11:47:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
|
|
|
cp -r $src/* $out/
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
2022-11-21 17:40:18 +00:00
|
|
|
description = "Single header audio playback and capture library written in C";
|
2022-09-30 11:47:45 +00:00
|
|
|
homepage = "https://github.com/mackron/miniaudio";
|
2022-11-21 17:40:18 +00:00
|
|
|
changelog = "https://github.com/mackron/miniaudio/blob/${src.rev}/CHANGES.md";
|
|
|
|
license = with licenses; [ unlicense /* or */ mit0 ];
|
2022-09-30 11:47:45 +00:00
|
|
|
maintainers = [ maintainers.jansol ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|