Skip to content

Commit

Permalink
glrnvim: init at 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aacebedo committed Jun 10, 2024
1 parent 31edba2 commit 492d136
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pkgs/by-name/gl/glrnvim/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
lib,
stdenv,
fetchFromGitHub,
rustPlatform,
}:

rustPlatform.buildRustPackage rec {
pname = "glrnvim";
version = "1.4.0";

src = fetchFromGitHub {
owner = "beeender";
repo = "glrnvim";
rev = "v${version}";
sha256 = "sha256-n3t3s3fzmBGXRDydYxNJ13itKul8dyLNW6HP8Di4hY0=";
};

cargoHash = "sha256-cHEse+pXwgPTL8GJyY4s1mhWXGTY8Fnn2rFpA5SNerY=";

postInstall = ''
install -Dm644 glrnvim.desktop -t $out/share/applications
install -Dm644 glrnvim.svg $out/share/icons/hicolor/scalable/apps/glrnvim.svg
'';

meta = {
description = "really fast & stable neovim GUI could be accelerated by GPU";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ aacebedo ];
};
}

0 comments on commit 492d136

Please sign in to comment.