Files

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

27 lines
471 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
fetchFromGitHub,
dune-configurator,
ogg,
libvorbis,
}:
buildDunePackage {
pname = "vorbis";
inherit (ogg) version src;
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [
ogg
libvorbis
];
meta = with lib; {
homepage = "https://github.com/savonet/ocaml-vorbis";
description = "Bindings to libvorbis";
license = licenses.gpl2Only;
maintainers = with maintainers; [ dandellion ];
};
}