about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/lablgtk3/rsvg2.nix
blob: 463f50f18e6249797b47568c941c84ee77b2ff69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ buildDunePackage
, dune-configurator
, lablgtk3
, librsvg
, pkg-config
}:

buildDunePackage rec {
  pname = "lablgtk3-rsvg2";

  inherit (lablgtk3) version src;

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ dune-configurator ];
  propagatedBuildInputs = [ lablgtk3 librsvg ];

  meta = lablgtk3.meta // {
    description = "OCaml interface to Gnome rsvg2 library";
  };
}