summary refs log tree commit diff
path: root/host/uISO/pkgs/resize.nix
blob: 8ffd598a0d9776e16182436b82539ef9b5387e45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ 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 = builtins.currentSystem;
}