depot/third_party/nixpkgs/pkgs/servers/demoit/default.nix
Default email 92b3d6365d Project import generated by Copybara.
GitOrigin-RevId: 412b9917cea092f3d39f9cd5dead4effd5bc4053
2022-10-30 16:09:59 +01:00

25 lines
582 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule {
pname = "demoit";
version = "unstable-2022-09-03";
src = fetchFromGitHub {
owner = "dgageot";
repo = "demoit";
rev = "258780987922e46abde8e848247af0a9435e3099";
sha256 = "sha256-yRfdnqk93GOTBa0zZrm4K3AkUqxGmlrwlKYcD6CtgRg=";
};
vendorSha256 = null;
subPackages = [ "." ];
meta = with lib; {
description = "Live coding demos without Context Switching";
homepage = "https://github.com/dgageot/demoit";
license = licenses.asl20;
maintainers = [ maintainers.freezeboy ];
};
}