about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/demoit/default.nix
blob: 1ffd5aba546d43601b70b5bc073746b0696d7843 (plain) (blame)
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
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule {
  pname = "demoit";
  version = "unstable-2022-09-03";

  src = fetchFromGitHub {
    owner = "dgageot";
    repo = "demoit";
    rev = "258780987922e46abde8e848247af0a9435e3099";
    sha256 = "sha256-yRfdnqk93GOTBa0zZrm4K3AkUqxGmlrwlKYcD6CtgRg=";
  };
  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 ];
  };
}