24 lines
666 B
Nix
24 lines
666 B
Nix
{ lib, buildDunePackage, fetchFromGitHub, dune-configurator, libmad }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "mad";
|
|
version = "0.5.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "savonet";
|
|
repo = "ocaml-mad";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-iJjANV2M68v3C3db1n9Y8V6yJKuDBDSjtMteamndN7U=";
|
|
};
|
|
|
|
buildInputs = [ dune-configurator ];
|
|
propagatedBuildInputs = [ libmad ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/savonet/ocaml-mad";
|
|
description = "Bindings for the mad library which provides functions for encoding wave audio files into mp3";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ dandellion ];
|
|
};
|
|
}
|