2021-10-09 17:10:43 +02:00
|
|
|
{ lib, buildDunePackage, fetchFromGitHub, dune-configurator, pkg-config, ogg, flac }:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "flac";
|
2023-11-05 11:46:04 +01:00
|
|
|
version = "0.5.0";
|
2021-10-09 17:10:43 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "savonet";
|
|
|
|
repo = "ocaml-flac";
|
|
|
|
rev = "v${version}";
|
2023-11-05 11:46:04 +01:00
|
|
|
sha256 = "sha256-HRRQd//e6Eh2HuyO+U00ILu5FoBT9jf/nRJzDOie70A=";
|
2021-10-09 17:10:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ dune-configurator ];
|
|
|
|
propagatedBuildInputs = [ ogg flac.dev ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/savonet/ocaml-flac";
|
|
|
|
description = "Bindings for flac";
|
|
|
|
license = licenses.gpl2Only;
|
|
|
|
maintainers = with maintainers; [ dandellion ];
|
|
|
|
};
|
|
|
|
}
|