aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/servers/demoit/default.nix
blob: 675792da6803bc19b823cee6aed0361fe0ade4aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv
, buildGoModule
, fetchFromGitHub
}:

buildGoModule {
  pname = "demoit";
  version = "unstable-2020-06-11";
  goPackagePath = "github.com/dgageot/demoit";

  src = fetchFromGitHub {
    owner = "dgageot";
    repo = "demoit";
    rev = "5762b169e7f2fc18913874bf52323ffbb906ce84";
    sha256 = "1jcjqr758d29h3y9ajvzhy1xmxfix5mwhylz6jwhy5nmk28bjzx9";
  };
  vendorSha256 = null;
  subPackages = [ "." ];

  meta = with stdenv.lib; {
    description = "Live coding demos without Context Switching";
    homepage = "https://github.com/dgageot/demoit";
    license = licenses.asl20;
    maintainers = [ maintainers.freezeboy ];
  };
}