dogedns: 0.2.6 -> 0.2.8 (#340101)
[NixPkgs.git] / pkgs / development / ocaml-modules / frei0r / default.nix
blobe4aba92bf4c6feff956e08cb07334bd034175af6
2   lib,
3   buildDunePackage,
4   fetchFromGitHub,
5   dune-configurator,
6   pkg-config,
7   frei0r,
8 }:
10 buildDunePackage rec {
11   pname = "frei0r";
12   version = "0.1.2";
14   src = fetchFromGitHub {
15     owner = "savonet";
16     repo = "ocaml-frei0r";
17     rev = "v${version}";
18     sha256 = "sha256-eh/ymZO/3a1z6uvZdnXgma/7AU2NBVs2lddA+R/kuQA=";
19   };
21   nativeBuildInputs = [ pkg-config ];
22   buildInputs = [ dune-configurator ];
23   propagatedBuildInputs = [ frei0r ];
25   meta = with lib; {
26     homepage = "https://github.com/savonet/ocaml-frei0r";
27     description = "Bindings for the frei0r API which provides video effects";
28     license = licenses.lgpl21Plus;
29     maintainers = with maintainers; [ dandellion ];
30   };