Unverified Commit ead8e2db authored by K900's avatar K900 Committed by GitHub
Browse files

Merge pull request #251335 from VuiMuich/init/gobble

gobble: init at 1.3
parents bacceeba 77f65ff5
Loading
Loading
Loading
Loading
+37 −0
Original line number Diff line number Diff line
{ 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;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -676,6 +676,8 @@ with pkgs;
  glade = callPackage ../development/tools/glade { };
  gobble = callPackage ../tools/X11/gobble { };
  goda = callPackage ../development/tools/goda { };
  gokrazy = callPackage ../development/misc/gokrazy { };