nixpkgs/pkgs/development/ocaml-modules/shine/default.nix

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

26 lines
664 B
Nix
Raw Normal View History

2021-10-30 19:53:14 +00:00
{ lib, buildDunePackage, fetchFromGitHub, dune-configurator, shine }:
buildDunePackage rec {
pname = "shine";
2023-02-28 14:11:22 +00:00
version = "0.2.3";
2021-10-30 19:53:14 +00:00
2023-02-28 14:11:22 +00:00
duneVersion = "2";
2021-10-30 19:53:14 +00:00
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-shine";
2023-02-28 14:11:22 +00:00
rev = "refs/tags/v${version}";
sha256 = "sha256-x/ubqPXT89GWYV9KIyzny0rJDB3TBurLX71i0DlvHLU=";
2021-10-30 19:53:14 +00:00
};
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 ];
};
}