nixpkgs/pkgs/servers/demoit/default.nix

27 lines
640 B
Nix
Raw Normal View History

2019-02-23 09:18:21 +00:00
{ stdenv
, buildGoModule
2019-02-23 09:18:21 +00:00
, fetchFromGitHub
}:
buildGoModule {
2019-02-23 09:18:21 +00:00
pname = "demoit";
version = "unstable-2020-06-11";
2019-02-23 09:18:21 +00:00
goPackagePath = "github.com/dgageot/demoit";
src = fetchFromGitHub {
owner = "dgageot";
repo = "demoit";
rev = "5762b169e7f2fc18913874bf52323ffbb906ce84";
sha256 = "1jcjqr758d29h3y9ajvzhy1xmxfix5mwhylz6jwhy5nmk28bjzx9";
2019-02-23 09:18:21 +00:00
};
vendorSha256 = null;
subPackages = [ "." ];
2019-02-23 09:18:21 +00:00
meta = with stdenv.lib; {
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 ];
};
}