nixpkgs/pkgs/tools/misc/homesick/default.nix

29 lines
968 B
Nix
Raw Normal View History

{ lib, bundlerEnv, bundlerUpdateScript, git }:
2016-01-19 01:11:50 +00:00
bundlerEnv {
pname = "homesick";
2016-01-19 01:11:50 +00:00
2017-01-17 23:20:34 +00:00
gemdir = ./.;
2016-01-19 01:11:50 +00:00
# Cannot use `wrapProgram` because the the help is aware of the file name.
postInstall = ''
rm $out/bin/thor
sed 1a'ENV["PATH"] = "${git}/bin:#{ENV["PATH"] ? ":#{ENV["PATH"]}" : "" }"' -i $out/bin/homesick
'';
passthru.updateScript = bundlerUpdateScript "homesick";
2016-01-19 01:11:50 +00:00
meta = with lib; {
description = "Your home directory is your castle. Don't leave your dotfiles behind";
longDescription =
2016-01-19 01:11:50 +00:00
''
Homesick is sorta like rip, but for dotfiles. It uses git to clone a repository containing
dotfiles, and saves them in ~/.homesick. It then allows you to symlink all the dotfiles into
place with a single command.
'';
homepage = "https://github.com/technicalpickles/homesick";
2016-01-19 01:11:50 +00:00
license = licenses.mit;
maintainers = with maintainers; [ aaronschif nicknovitski ];
2016-01-19 01:11:50 +00:00
platforms = platforms.unix;
};
}