obuild: 0.1.10 → 0.1.11
This commit is contained in:
parent
4469e22700
commit
97e9d370d7
@ -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
|
||||
@ -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; [ ];
|
||||
|
Loading…
Reference in New Issue
Block a user