lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.11-beta 36 lines 723 B view raw
1{ stdenv 2, lib 3, fetchzip 4}: 5 6stdenv.mkDerivation rec { 7 pname = "kasmweb"; 8 version = "1.12.0"; 9 build = "d4fd8a"; 10 11 src = fetchzip { 12 url = "https://kasm-static-content.s3.amazonaws.com/kasm_release_${version}.${build}.tar.gz"; 13 sha256 = "sha256-dCjWmI8gYtoMiMHVNgTg2ZROHXvT4ulynNvnKfMxURo="; 14 }; 15 16 dontConfigure = true; 17 dontBuild = true; 18 19 installPhase = '' 20 runHook preInstall 21 22 mkdir $out 23 rm bin/utils/yq* 24 cp -r bin conf www $out/ 25 26 runHook postInstall 27 ''; 28 29 30 meta = with lib; { 31 homepage = "https://www.kasmweb.com/"; 32 description = "Streaming containerized apps and desktops to end-users"; 33 license = licenses.unfree; 34 maintainers = with maintainers; [ s1341 ]; 35 }; 36}