mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
28 lines
567 B
Nix
28 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";
|
|
};
|
|
}
|