10 in buildNpmPackage rec {
11 pname = "whitebophir";
14 src = fetchFromGitHub {
18 hash = "sha256-4T7s9WrpyHVPcw0QY0C0sczDJYKzA4bAAfEv8q2pOy4=";
23 npmDepsHash = "sha256-mKDkkX7vWrnfEg1D65bqn/MtyUS0DKjTtkDW6ebso7g=";
25 # geckodriver tries to access network
26 npmFlags = [ "--ignore-scripts" ];
31 out_whitebophir=$out/lib/node_modules/whitebophir
34 cat <<EOF > $out/bin/whitebophir
36 exec ${nodejs}/bin/node $out_whitebophir/server/server.js
38 chmod +x $out/bin/whitebophir
42 description = "Online collaborative whiteboard that is simple, free, easy to use and to deploy";
43 license = licenses.agpl3Plus;
44 homepage = "https://github.com/lovasoa/whitebophir";
45 mainProgram = "whitebophir";
46 maintainers = with maintainers; [ iblech ];
47 platforms = platforms.unix;