depot/pkgs/development/ocaml-modules/lablgtk3/rsvg2.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

20 lines
385 B
Nix

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