blob: 1a7bdba0814ce3cf71d276f5d592fe1b1a55de67 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{
lib,
rustPlatform,
fetchFromGitHub,
xorg,
installShellFiles,
pandoc,
}:
rustPlatform.buildRustPackage rec {
pname = "gobble";
version = "1.3";
src = fetchFromGitHub {
owner = "EmperorPenguin18";
repo = "gobble";
rev = version;
hash = "sha256-g4154Axvjp9jbE0lvMeNGM+v2UxkAsZqt9kPv5bhVK8=";
};
cargoHash = "sha256-DnIZTeRyxhmVK2uB21ScPiEyL4k9kAWfVoLNIAM9P68=";
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;
mainProgram = "gobble";
};
}
|