mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
36 lines
722 B
Nix
36 lines
722 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, ocamlPackages
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rml";
|
|
version = "1.09.07";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "reactiveml";
|
|
repo = pname;
|
|
rev = "${pname}-${version}-2021-07-26";
|
|
hash = "sha256-UFqXQBeIQMSV4O439j9s06p1hh7xA98Tu79FsjK9PIY=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = with ocamlPackages; [
|
|
ocaml
|
|
];
|
|
|
|
buildInputs = with ocamlPackages; [
|
|
num
|
|
];
|
|
|
|
prefixKey = "-prefix ";
|
|
|
|
meta = with lib; {
|
|
description = "ReactiveML: a programming language for implementing interactive systems";
|
|
homepage = "https://rml.lri.fr";
|
|
license = with licenses; [ qpl lgpl21Plus ];
|
|
maintainers = with maintainers; [ wegank ];
|
|
};
|
|
}
|