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