mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 20:53:48 +00:00
a13cdfe520
To keep this for the future we also strictDeps where possible, including for janePackages, topkg, oasis and ocamlbuild. This makes some closures significantly smaller and makes cross compilation easier
49 lines
858 B
Nix
49 lines
858 B
Nix
{ stdenv, lib, fetchFromGitHub, ocaml, findlib, utop, python3, stdcompat, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pyml";
|
|
version = "20211015";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "thierry-martinez";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-GCO6KlRhJmADFjQ5QF4naMQBskF63yqnJnLnuQsagEk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
ocaml
|
|
findlib
|
|
];
|
|
buildInputs = [
|
|
utop
|
|
ncurses
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
python3
|
|
stdcompat
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
buildPhase = ''
|
|
make all pymltop pymlutop PREFIX=$out
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin
|
|
mkdir -p $OCAMLFIND_DESTDIR/stublibs
|
|
make install PREFIX=$out
|
|
runHook postInstall
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "OCaml bindings for Python";
|
|
license = lib.licenses.bsd2;
|
|
};
|
|
}
|