Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / frei0r / default.nix
blob4f4a64d220a4540adbbbc9a6077025fa2bf8bdf9
1 { lib, buildDunePackage, fetchFromGitHub, dune-configurator, pkg-config, frei0r }:
3 buildDunePackage rec {
4   pname = "frei0r";
5   version = "0.1.2";
7   src = fetchFromGitHub {
8     owner = "savonet";
9     repo = "ocaml-frei0r";
10     rev = "v${version}";
11     sha256 = "sha256-eh/ymZO/3a1z6uvZdnXgma/7AU2NBVs2lddA+R/kuQA=";
12   };
14   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [ dune-configurator ];
16   propagatedBuildInputs = [ frei0r ];
18   meta = with lib; {
19     homepage = "https://github.com/savonet/ocaml-frei0r";
20     description = "Bindings for the frei0r API which provides video effects";
21     license = licenses.lgpl21Plus;
22     maintainers = with maintainers; [ dandellion ];
23   };