nixpkgs/pkgs/development/ocaml-modules/lablgtk3/rsvg2.nix

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

21 lines
385 B
Nix
Raw Normal View History

{ 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";
};
}