Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
572 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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";
};
}