mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-07-03 15:57:20 +02:00
Trying to fix mosh
This commit is contained in:
parent
bc5d856dbf
commit
26129b461a
5 changed files with 96 additions and 1 deletions
16
utils.nix
16
utils.nix
|
@ -19,6 +19,22 @@ in
|
|||
home-manager.useUserPackages = true;
|
||||
nixpkgs.overlays = [
|
||||
inputs.neovim-nightly-overlay.overlay
|
||||
(final: prev:
|
||||
{
|
||||
mosh = prev.mosh.overrideAttrs (old: {
|
||||
patches = [];
|
||||
postPatch = '''';
|
||||
buildInputs = with prev; [ protobuf ncurses zlib openssl ]
|
||||
++ (with perlPackages; [ perl IOTty ])
|
||||
++ lib.optional true libutempter;
|
||||
src = prev.fetchFromGitHub {
|
||||
owner = "mobile-shell";
|
||||
repo = "mosh";
|
||||
rev = "378dfa6aa5778cf168646ada7f52b6f4a8ec8e41";
|
||||
sha256 = "LJssBMrICVgaZtTvZTO6bYMFO4fQ330lIUkWzDSyf7o=";
|
||||
};
|
||||
});
|
||||
})
|
||||
];
|
||||
}
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue