Skip to content

Instantly share code, notes, and snippets.

@NOTtheMessiah
Last active July 28, 2021 08:22
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NOTtheMessiah/66420152ed6562762a33469b8e079aa4 to your computer and use it in GitHub Desktop.
Save NOTtheMessiah/66420152ed6562762a33469b8e079aa4 to your computer and use it in GitHub Desktop.
Building neovim-gtk with Nix
with import <nixpkgs>{};
rustPlatform.buildRustPackage rec {
name = "neovim-gtk-unstable-${version}";
version = "2018-04-01";
src = fetchFromGitHub {
owner = "daa84";
repo = "neovim-gtk";
rev = "e67e03605d61881180c390dbc44b88430ebbd23d";
sha256 = "0ngwav37bjqjjgd9ksv4midmrf0r4p2if8wk75fdinbg75yr7qwr";
};
cargoSha256 = "1pz2gsj8b7j1ws4h6yacfg3fawkbw5wcwvm07fvfx2p5j99gghhq";
buildInputs = [ gtk3 gnome3.vte ];
meta = with stdenv.lib; {
description = "GTK+ UI for Neovim";
homepage = https://github.com/daa84/neovim-gtk;
license = with licenses; [ gpl3 ];
# maintainers = [ maintainers.somebodyplease ];
platforms = [ platforms.linux ];
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment