me like nix
0

Configure Feed

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

at main 651 B View raw
1{ 2 pkgs, 3}: 4 5pkgs.stdenv.mkDerivation { 6 pname = "zjctl"; 7 version = "0.1.3"; 8 9 src = pkgs.fetchurl { 10 url = "https://github.com/mrshu/zjctl/releases/download/v0.1.3/zjctl-x86_64-linux.tar.gz"; 11 hash = "sha256-2O4LfV9+pXbVew1yryE3SumrGQcR77r6tBs6uTHH1Sg="; 12 }; 13 14 sourceRoot = "."; 15 16 nativeBuildInputs = [ pkgs.autoPatchelfHook ]; 17 buildInputs = [ pkgs.gcc-unwrapped.lib ]; 18 19 installPhase = '' 20 install -Dm755 zjctl $out/bin/zjctl 21 ''; 22 23 meta = { 24 description = "Programmatic Zellij automation CLI"; 25 homepage = "https://github.com/mrshu/zjctl"; 26 license = pkgs.lib.licenses.mit; 27 platforms = [ "x86_64-linux" ]; 28 }; 29}