Last active
July 28, 2021 08:22
-
-
Save NOTtheMessiah/66420152ed6562762a33469b8e079aa4 to your computer and use it in GitHub Desktop.
Building neovim-gtk with Nix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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