My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/rebez/default.nix

23 lines
631 B

{ 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; [ superherointj ];
mainProgram = "RebezApp.exe";
};
}