Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
1011 B
Nix
37 lines
1011 B
Nix
{
|
|
lib,
|
|
bundlerEnv,
|
|
bundlerUpdateScript,
|
|
git,
|
|
}:
|
|
bundlerEnv {
|
|
pname = "homesick";
|
|
|
|
gemdir = ./.;
|
|
|
|
# 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";
|
|
|
|
meta = {
|
|
description = "Your home directory is your castle. Don't leave your dotfiles behind";
|
|
longDescription = ''
|
|
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";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
aaronschif
|
|
nicknovitski
|
|
];
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "homesick";
|
|
};
|
|
}
|