init: demoit-unstable-2019-03-29

This commit is contained in:
freezeboy 2019-02-23 10:18:21 +01:00
parent 8a5729de67
commit 5e4ca6a0da
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv
, buildGoPackage
, fetchFromGitHub
}:
buildGoPackage rec {
pname = "demoit";
version = "unstable-2019-03-29";
goPackagePath = "github.com/dgageot/demoit";
src = fetchFromGitHub {
owner = "dgageot";
repo = "demoit";
rev = "ec70fbdf5a5e92fa1c06d8f039f7d388e0237ba2";
sha256 = "01584cxlnrc928sw7ldmi0sm7gixmwnawy3c5hd79rqkw8r0gbk0";
};
meta = with stdenv.lib; {
description = "Live coding demos without Context Switching";
homepage = https://github.com/dgageot/demoit;
license = licenses.asl20;
maintainers = [ maintainers.freezeboy ];
};
}

View file

@ -157,6 +157,8 @@ in
deadcode = callPackage ../development/tools/deadcode { };
demoit = callPackage ../servers/demoit { };
diffPlugins = (callPackage ../build-support/plugins.nix {}).diffPlugins;
dieHook = makeSetupHook {} ../build-support/setup-hooks/die.sh;