me like nix
0

Configure Feed

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

at main 502 B View raw
1{ 2 pkgs, 3}: 4 5pkgs.stdenv.mkDerivation { 6 pname = "zrpc-wasm"; 7 version = "0.1.3"; 8 9 src = pkgs.fetchurl { 10 url = "https://github.com/mrshu/zjctl/releases/download/v0.1.3/zrpc.wasm"; 11 hash = "sha256-ldY8ZL2GeR1PI9K4X1eFlu42MnVWjmOPKRe0zDPLJl0="; 12 }; 13 14 dontUnpack = true; 15 16 installPhase = '' 17 install -Dm644 $src $out/zrpc.wasm 18 ''; 19 20 meta = { 21 description = "Zellij RPC plugin for zjctl"; 22 homepage = "https://github.com/mrshu/zjctl"; 23 license = pkgs.lib.licenses.mit; 24 }; 25}