l: add and use rs pkg

This commit is contained in:
lassulus 2016-06-13 23:01:56 +02:00
parent abd7b0bd28
commit bb19655339
3 changed files with 8 additions and 0 deletions

View File

@ -121,6 +121,7 @@ with config.krebs.lib;
krebspaste krebspaste
pciutils pciutils
psmisc psmisc
rs
tmux tmux
untilport untilport
usbutils usbutils

View File

@ -10,6 +10,7 @@
}; };
mk_sql_pair = pkgs.callPackage ./mk_sql_pair/default.nix {}; mk_sql_pair = pkgs.callPackage ./mk_sql_pair/default.nix {};
mpv-poll = pkgs.callPackage ./mpv-poll/default.nix {}; mpv-poll = pkgs.callPackage ./mpv-poll/default.nix {};
rs = pkgs.callPackage ./rs/default.nix {};
untilport = pkgs.callPackage ./untilport/default.nix {}; untilport = pkgs.callPackage ./untilport/default.nix {};
urban = pkgs.callPackage ./urban/default.nix {}; urban = pkgs.callPackage ./urban/default.nix {};
xmonad-lass = xmonad-lass =

View File

@ -0,0 +1,6 @@
{ pkgs, ... }:
#TODO: get tab-completion working again
pkgs.writeBashBin "rs" ''
rsync -vaP --append-verify "$@"
''