{ lib, pkgs, ... }: derivation { name = "resize"; version = "1.0"; builder = "${pkgs.bash}/bin/bash"; args = [ "-c" "${pkgs.coreutils}/bin/mkdir -p $out/bin; ${pkgs.coreutils}/bin/cp ${pkgs.xterm}/bin/.resize-wrapped $out/bin/resize" ]; system = pkgs.system; }