mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
25 lines
592 B
Nix
25 lines
592 B
Nix
{ stdenv
|
|
, buildGoPackage
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoPackage {
|
|
pname = "demoit";
|
|
version = "unstable-2019-05-10";
|
|
goPackagePath = "github.com/dgageot/demoit";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dgageot";
|
|
repo = "demoit";
|
|
rev = "c1d4780620ebf083cb4a81b83c80e7547ff7bc23";
|
|
sha256 = "0l0pw0kzgnrk6a6f4ls3s82icjp7q9djbaxwfpjswbcfdzrsk4p2";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Live coding demos without Context Switching";
|
|
homepage = https://github.com/dgageot/demoit;
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.freezeboy ];
|
|
};
|
|
}
|