mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
36 lines
894 B
Nix
36 lines
894 B
Nix
{ lib, stdenv, fetchFromGitHub, ocamlPackages }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "obuild";
|
|
version = "0.1.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ocaml-obuild";
|
|
repo = "obuild";
|
|
rev = "obuild-v${version}";
|
|
hash = "sha256-me9/FVD7S0uPIpFZzcxDfYKVWn9ifq6JryBAGCo681I=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = with ocamlPackages; [ ocaml findlib ];
|
|
|
|
buildPhase = ''
|
|
patchShebangs ./bootstrap
|
|
./bootstrap
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp dist/build/obuild/obuild dist/build/obuild-from-oasis/obuild-from-oasis dist/build/obuild-simple/obuild-simple $out/bin/
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/ocaml-obuild/obuild";
|
|
inherit (ocamlPackages.ocaml.meta) platforms;
|
|
description = "Simple package build system for OCaml";
|
|
license = lib.licenses.lgpl21;
|
|
maintainers = with lib.maintainers; [ ];
|
|
};
|
|
}
|