2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2020-07-10 16:45:43 +02:00
|
|
|
, buildGoModule
|
2019-02-23 10:18:21 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
2020-07-10 16:45:43 +02:00
|
|
|
buildGoModule {
|
2019-02-23 10:18:21 +01:00
|
|
|
pname = "demoit";
|
2020-07-10 16:45:43 +02:00
|
|
|
version = "unstable-2020-06-11";
|
2019-02-23 10:18:21 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dgageot";
|
|
|
|
repo = "demoit";
|
2020-07-10 16:45:43 +02:00
|
|
|
rev = "5762b169e7f2fc18913874bf52323ffbb906ce84";
|
|
|
|
sha256 = "1jcjqr758d29h3y9ajvzhy1xmxfix5mwhylz6jwhy5nmk28bjzx9";
|
2019-02-23 10:18:21 +01:00
|
|
|
};
|
2020-07-10 16:45:43 +02:00
|
|
|
vendorSha256 = null;
|
|
|
|
subPackages = [ "." ];
|
2019-02-23 10:18:21 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2019-02-23 10:18:21 +01:00
|
|
|
description = "Live coding demos without Context Switching";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/dgageot/demoit";
|
2019-02-23 10:18:21 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.freezeboy ];
|
|
|
|
};
|
|
|
|
}
|