My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/infra/libkookie/overlays/kookie/brook-frontend/default.nix

22 lines
347 B

{ stdenv, lib }:
stdenv.mkDerivation rec {
name = "brook-frontend";
src = ./.;
buildPhase = ''
'';
installPhase = ''
mkdir $out
'';
meta = with lib; {
description = "The brook streaming web frontend";
homepage = "https://git.spacekookie.de/kookienomicon/apps/servers/brook";
license = licenses.agpl3;
};
}