Commit 97e9d370 authored by Vincent Laporte's avatar Vincent Laporte Committed by Vincent Laporte
Browse files

obuild: 0.1.10 → 0.1.11

parent 4469e227
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, ocaml }:
{ lib, stdenv, fetchFromGitHub, ocamlPackages }:

stdenv.mkDerivation rec {
  pname = "obuild";
  version = "0.1.10";
  version = "0.1.11";

  src = fetchFromGitHub {
    owner = "ocaml-obuild";
    repo = "obuild";
    rev = "obuild-v${version}";
    sha256 = "sha256-dqWP9rwWmr7i3O29v/kipJL01B3qQozaToOFCdfTWZU=";
    hash = "sha256-me9/FVD7S0uPIpFZzcxDfYKVWn9ifq6JryBAGCo681I=";
  };

  strictDeps = true;

  nativeBuildInputs = [ ocaml ];
  nativeBuildInputs = with ocamlPackages; [ ocaml findlib ];

  buildPhase = ''
    patchShebangs ./bootstrap
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {

  meta = {
    homepage = "https://github.com/ocaml-obuild/obuild";
    platforms = ocaml.meta.platforms or [ ];
    inherit (ocamlPackages.ocaml.meta) platforms;
    description = "Simple package build system for OCaml";
    license = lib.licenses.lgpl21;
    maintainers = with lib.maintainers; [ ];