frontend client for gemstone. decentralised workplace app
1{ lib, buildNpmPackage }:
2
3buildNpmPackage {
4 pname = "gemstone-app";
5 version = "0.0.1";
6
7 src = ./.;
8
9 npmDepsHash = lib.fakeHash;
10
11 meta = {
12 description = "frontend for gemstone, decentralised workspace app.";
13 homepage = "https://github.com/gemstone-systems/gemstone-app";
14 license = lib.licenses.mit;
15 maintainers = with lib.maintainers; [ ];
16 mainProgram = "example";
17 };
18}