Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildGoModule 3, fetchFromGitHub 4}: 5 6buildGoModule { 7 pname = "demoit"; 8 version = "unstable-2022-09-03"; 9 10 src = fetchFromGitHub { 11 owner = "dgageot"; 12 repo = "demoit"; 13 rev = "258780987922e46abde8e848247af0a9435e3099"; 14 sha256 = "sha256-yRfdnqk93GOTBa0zZrm4K3AkUqxGmlrwlKYcD6CtgRg="; 15 }; 16 vendorHash = null; 17 subPackages = [ "." ]; 18 19 meta = with lib; { 20 description = "Live coding demos without Context Switching"; 21 homepage = "https://github.com/dgageot/demoit"; 22 license = licenses.asl20; 23 maintainers = [ maintainers.freezeboy ]; 24 }; 25}