nixpkgs/pkgs/servers/demoit/default.nix
2023-11-27 02:17:53 +01:00

29 lines
567 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "demoit";
version = "1.0";
src = fetchFromGitHub {
owner = "dgageot";
repo = "demoit";
rev = "v${version}";
hash = "sha256-3g0k2Oau0d9tXYDtxHpUKvAQ1FnGhjRP05YVTlmgLhM=";
};
vendorHash = null;
subPackages = [ "." ];
meta = with lib; {
description = "Live coding demos without Context Switching";
homepage = "https://github.com/dgageot/demoit";
license = licenses.asl20;
maintainers = [ maintainers.freezeboy ];
mainProgram = "demoit";
};
}