gobble: init at 1.3

https://github.com/EmperorPenguin18/gobble
This commit is contained in:
VuiMuich 2023-08-25 10:49:17 +02:00
parent c7e51b136c
commit 77f65ff563
No known key found for this signature in database
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ lib
, rustPlatform
, fetchFromGitHub
, xorg
, installShellFiles
, pandoc
}:
rustPlatform.buildRustPackage rec {
pname = "gobble";
version = "1.3";
src = fetchFromGitHub {
owner = "EmperorPenguin18";
repo = pname;
rev = version;
hash = "sha256-g4154Axvjp9jbE0lvMeNGM+v2UxkAsZqt9kPv5bhVK8=";
};
cargoHash = "sha256-5xsMLOYTKQc1bHHQsk9L4rHMVNBFOzIMxD+1qaMaNbQ=";
buildInputs = [ xorg.libxcb ];
nativeBuildInputs = [ pandoc installShellFiles ];
postInstall = ''
pandoc gobble.1.md -s -t man -o gobble.1
installManPage gobble.1
'';
meta = {
description = "gobbles your terminal";
homepage = "https://github.com/EmperorPenguin18/gobble";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ vuimuich ];
platforms = lib.platforms.linux;
};
}

View file

@ -674,6 +674,8 @@ with pkgs;
glade = callPackage ../development/tools/glade { };
gobble = callPackage ../tools/X11/gobble { };
goda = callPackage ../development/tools/goda { };
gokrazy = callPackage ../development/misc/gokrazy { };