Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / shine / default.nix
blob13d41e72254b76dec25bccffb71b0a972c41a5c0
1 { lib, buildDunePackage, fetchFromGitHub, dune-configurator, shine }:
3 buildDunePackage rec {
4   pname = "shine";
5   version = "0.2.3";
7   src = fetchFromGitHub {
8     owner = "savonet";
9     repo = "ocaml-shine";
10     rev = "refs/tags/v${version}";
11     sha256 = "sha256-x/ubqPXT89GWYV9KIyzny0rJDB3TBurLX71i0DlvHLU=";
12   };
14   buildInputs = [ dune-configurator ];
15   propagatedBuildInputs = [ shine ];
17   meta = with lib; {
18     homepage = "https://github.com/savonet/ocaml-shine";
19     description = "Bindings to the fixed-point mp3 encoding library shine";
20     license = licenses.gpl2Only;
21     maintainers = with maintainers; [ dandellion ];
22   };