depot/third_party/nixpkgs/pkgs/development/ocaml-modules/shine/default.nix
Default email 4d5a95770c Project import generated by Copybara.
GitOrigin-RevId: 3c5319ad3aa51551182ac82ea17ab1c6b0f0df89
2023-03-04 15:14:45 +03:00

25 lines
664 B
Nix

{ lib, buildDunePackage, fetchFromGitHub, dune-configurator, shine }:
buildDunePackage rec {
pname = "shine";
version = "0.2.3";
duneVersion = "2";
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 ];
};
}