Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildDunePackage, 3 fetchFromGitHub, 4 lib, 5 reason, 6}: 7 8buildDunePackage { 9 pname = "rebez"; 10 version = "unstable-2019-06-20"; 11 12 src = fetchFromGitHub { 13 owner = "jchavarri"; 14 repo = "rebez"; 15 rev = "03fa3b707abb28fdd710eb9e57ba40d9cd6ae163"; 16 sha256 = "sha256-khZSwtwW+mP/EvAvIZMQyOb6FgNR+gmzpBZoD9ZPkpY="; 17 }; 18 19 nativeBuildInputs = [ reason ]; 20 21 meta = with lib; { 22 description = "Cubic bezier implementation in Reason / OCaml"; 23 homepage = "https://github.com/jchavarri/rebez/"; 24 license = licenses.mit; 25 maintainers = [ ]; 26 mainProgram = "RebezApp.exe"; 27 }; 28}