summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/rebez/default.nix
blob: 6a871069eb6afb2cb149a0206d76348a336f72e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ buildDunePackage, fetchFromGitHub, lib, reason }:

buildDunePackage rec {
  pname = "rebez";
  version = "unstable-2019-06-20";

  src = fetchFromGitHub {
    owner = "jchavarri";
    repo = "rebez";
    rev = "03fa3b707abb28fdd710eb9e57ba40d9cd6ae163";
    sha256 = "sha256-khZSwtwW+mP/EvAvIZMQyOb6FgNR+gmzpBZoD9ZPkpY=";
  };

  nativeBuildInputs = [ reason ];

  meta = with lib; {
    description = "Cubic bezier implementation in Reason / OCaml";
    homepage = "https://github.com/jchavarri/rebez/";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
    mainProgram = "RebezApp.exe";
  };
}