2021-01-11 13:49:15 +01:00
|
|
|
{ stdenv, lib, fetchzip, ocaml, findlib, ocamlbuild, topkg, astring }:
|
2016-12-04 12:13:32 +01:00
|
|
|
|
2021-11-09 20:42:54 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ocaml${ocaml.version}-ocb-stubblr";
|
|
|
|
version = "0.1.0";
|
|
|
|
|
2016-12-04 12:13:32 +01:00
|
|
|
src = fetchzip {
|
2021-11-09 20:42:54 +01:00
|
|
|
url = "https://github.com/pqwy/ocb-stubblr/releases/download/v${version}/ocb-stubblr-${version}.tbz";
|
2016-12-04 12:13:32 +01:00
|
|
|
name = "src.tar.bz";
|
|
|
|
sha256 = "0hpds1lkq4j8wgslv7hnirgfrjmqi36h5rarpw9mwf24gfp5ays2";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./pkg-config.patch ];
|
|
|
|
|
2022-02-22 10:59:04 +01:00
|
|
|
nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
|
|
|
|
buildInputs = [ topkg ocamlbuild ];
|
2016-12-04 12:13:32 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ astring ];
|
|
|
|
|
2022-02-22 10:59:04 +01:00
|
|
|
strictDeps = true;
|
|
|
|
|
2016-12-04 12:13:32 +01:00
|
|
|
inherit (topkg) buildPhase installPhase;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "OCamlbuild plugin for C stubs";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/pqwy/ocb-stubblr";
|
2021-01-11 13:49:15 +01:00
|
|
|
license = lib.licenses.isc;
|
2016-12-04 12:13:32 +01:00
|
|
|
inherit (ocaml.meta) platforms;
|
2021-01-11 13:49:15 +01:00
|
|
|
maintainers = [ lib.maintainers.vbgl ];
|
2016-12-04 12:13:32 +01:00
|
|
|
};
|
|
|
|
}
|