nixpkgs/pkgs/servers/demoit/default.nix

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

29 lines
567 B
Nix
Raw Normal View History

{ lib
, buildGoModule
2019-02-23 09:18:21 +00:00
, fetchFromGitHub
}:
2023-09-14 14:43:19 +00:00
buildGoModule rec {
2019-02-23 09:18:21 +00:00
pname = "demoit";
2023-09-14 14:43:19 +00:00
version = "1.0";
2019-02-23 09:18:21 +00:00
src = fetchFromGitHub {
owner = "dgageot";
repo = "demoit";
2023-09-14 14:43:19 +00:00
rev = "v${version}";
hash = "sha256-3g0k2Oau0d9tXYDtxHpUKvAQ1FnGhjRP05YVTlmgLhM=";
2019-02-23 09:18:21 +00:00
};
2023-09-14 14:43:19 +00:00
vendorHash = null;
2023-09-14 14:43:19 +00:00
subPackages = [ "." ];
2019-02-23 09:18:21 +00:00
meta = with lib; {
2019-02-23 09:18:21 +00:00
description = "Live coding demos without Context Switching";
homepage = "https://github.com/dgageot/demoit";
2019-02-23 09:18:21 +00:00
license = licenses.asl20;
maintainers = [ maintainers.freezeboy ];
2023-11-27 01:17:53 +00:00
mainProgram = "demoit";
2019-02-23 09:18:21 +00:00
};
}