nixpkgs/pkgs/servers/demoit/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
567 B
Nix
Raw Normal View History

{ lib
, buildGoModule
2019-02-23 10:18:21 +01:00
, fetchFromGitHub
}:
2023-09-14 16:43:19 +02:00
buildGoModule rec {
2019-02-23 10:18:21 +01:00
pname = "demoit";
2023-09-14 16:43:19 +02:00
version = "1.0";
2019-02-23 10:18:21 +01:00
src = fetchFromGitHub {
owner = "dgageot";
repo = "demoit";
2023-09-14 16:43:19 +02:00
rev = "v${version}";
hash = "sha256-3g0k2Oau0d9tXYDtxHpUKvAQ1FnGhjRP05YVTlmgLhM=";
2019-02-23 10:18:21 +01:00
};
2023-09-14 16:43:19 +02:00
vendorHash = null;
2023-09-14 16:43:19 +02:00
subPackages = [ "." ];
2019-02-23 10:18:21 +01:00
meta = with lib; {
2019-02-23 10:18:21 +01:00
description = "Live coding demos without Context Switching";
homepage = "https://github.com/dgageot/demoit";
2019-02-23 10:18:21 +01:00
license = licenses.asl20;
maintainers = [ maintainers.freezeboy ];
2023-11-27 02:17:53 +01:00
mainProgram = "demoit";
2019-02-23 10:18:21 +01:00
};
}