nixpkgs/pkgs/development/ocaml-modules/shine/default.nix
2023-05-12 05:50:40 +02:00

24 lines
642 B
Nix

{ lib, buildDunePackage, fetchFromGitHub, dune-configurator, shine }:
buildDunePackage rec {
pname = "shine";
version = "0.2.3";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-shine";
rev = "refs/tags/v${version}";
sha256 = "sha256-x/ubqPXT89GWYV9KIyzny0rJDB3TBurLX71i0DlvHLU=";
};
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ shine ];
meta = with lib; {
homepage = "https://github.com/savonet/ocaml-shine";
description = "Bindings to the fixed-point mp3 encoding library shine";
license = licenses.gpl2Only;
maintainers = with maintainers; [ dandellion ];
};
}