nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 24 lines 398 B view raw
1{ 2 buildDunePackage, 3 dune-configurator, 4 lablgtk3, 5 librsvg, 6 pkg-config, 7}: 8 9buildDunePackage { 10 pname = "lablgtk3-rsvg2"; 11 12 inherit (lablgtk3) version src; 13 14 nativeBuildInputs = [ pkg-config ]; 15 buildInputs = [ dune-configurator ]; 16 propagatedBuildInputs = [ 17 lablgtk3 18 librsvg 19 ]; 20 21 meta = lablgtk3.meta // { 22 description = "OCaml interface to Gnome rsvg2 library"; 23 }; 24}