Commit 37458514 authored by figsoda's avatar figsoda Committed by Anderson Torres
Browse files

icebreaker: init at unstable-2023-08-13

parent afde5d87
Loading
Loading
Loading
Loading
+43 −0
Original line number Diff line number Diff line
{ lib
, buildGoModule
, fetchFromGitHub
, makeBinaryWrapper
}:

buildGoModule {
  pname = "icebreaker";
  version = "unstable-2023-08-13";

  src = fetchFromGitHub {
    owner = "jonhoo";
    repo = "icebreaker";
    rev = "71fe0679fcf82ccf458b47585cda09f3ef213155";
    hash = "sha256-d8x4Q4ZT0qrKWEIRbYVOUjhnkJWOgY0ct/+cjaSh7SU=";
  };

  proxyVendor = true;
  vendorHash = "sha256-i648w+BOUX5IfEEZ11gJAjX1ZUdoYRzDPz6GDe7i2S8=";

  nativeBuildInputs = [
    makeBinaryWrapper
  ];

  ldflags = [ "-s" "-w" ];

  postInstall = ''
    mkdir -p $out/share
    cp -r static templates $out/share

    wrapProgram $out/bin/icebreaker \
      --chdir $out/share \
      --set-default GIN_MODE release
  '';

  meta = with lib; {
    description = "Web app that allows students to ask real-time, anonymous questions during class";
    homepage = "https://github.com/jonhoo/icebreaker";
    license = licenses.mit;
    maintainers = with maintainers; [ figsoda ];
    mainProgram = "icebreaker";
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -9122,6 +9122,8 @@ with pkgs;
  ibniz = callPackage ../tools/graphics/ibniz { };
  icebreaker = callPackage ../servers/icebreaker { };
  icecast = callPackage ../servers/icecast { };
  icemon = libsForQt5.callPackage ../applications/networking/icemon { };