depot/third_party/nixpkgs/pkgs/development/ocaml-modules/gd/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

23 lines
584 B
Nix

{ lib, buildDunePackage, fetchFromGitHub, dune-configurator, gd }:
buildDunePackage rec {
pname = "gd";
version = "1.1";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-gd";
rev = "v${version}";
sha256 = "sha256-78cqxVEappTybRLk7Y6vW1POvZKFIxtGNVcmkKq9GEE=";
};
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ gd ];
meta = with lib; {
homepage = "https://github.com/savonet/ocaml-gd";
description = "OCaml bindings for gd";
license = licenses.lgpl21Only;
maintainers = with maintainers; [ dandellion ];
};
}