biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / ocb-stubblr / default.nix
blobfcd63ced7a80900038eb58e0ad0039161169a9f4
1 { stdenv, lib, fetchzip, ocaml, findlib, ocamlbuild, topkg, astring }:
3 stdenv.mkDerivation rec {
4   pname = "ocaml${ocaml.version}-ocb-stubblr";
5   version = "0.1.0";
7   src = fetchzip {
8     url = "https://github.com/pqwy/ocb-stubblr/releases/download/v${version}/ocb-stubblr-${version}.tbz";
9     name = "src.tar.bz";
10     sha256 = "0hpds1lkq4j8wgslv7hnirgfrjmqi36h5rarpw9mwf24gfp5ays2";
11   };
13   patches = [ ./pkg-config.patch ];
15   nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
16   buildInputs = [ topkg ocamlbuild ];
18   propagatedBuildInputs = [ astring ];
20   strictDeps = true;
22   inherit (topkg) buildPhase installPhase;
24   meta = {
25     description = "OCamlbuild plugin for C stubs";
26     homepage = "https://github.com/pqwy/ocb-stubblr";
27     license = lib.licenses.isc;
28     inherit (ocaml.meta) platforms;
29     maintainers = [ lib.maintainers.vbgl ];
30   };