git.delta.rocks / remowt / refs/commits / eadb0bb3c19e

difftreelog

source

nix/remowt-ssh.nix271 Bsourcehistory
1{2  craneLib,3  agents,4  rofi,5}:6let7  crateName = "remowt-ssh";8in9craneLib.buildPackage {10  src = craneLib.cleanCargoSource ../.;1112  pname = crateName;1314  cargoExtraArgs = "--locked -p ${crateName}";1516  REMOWT_AGENTS_DIR = "${agents}";17  ROFI = "${rofi}/bin/rofi";18}