Files
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.

25 lines
398 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
dune-configurator,
lablgtk3,
librsvg,
pkg-config,
}:
buildDunePackage {
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";
};
}