Skip to content

Commit

Permalink
obuild: 0.1.10 → 0.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
vbgl committed Nov 28, 2023
1 parent 4469e22 commit 97e9d37
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkgs/development/tools/ocaml/obuild/default.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{ 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
Expand All @@ -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; [ ];
Expand Down

0 comments on commit 97e9d37

Please sign in to comment.