Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
43 lines
877 B
Nix
43 lines
877 B
Nix
{
|
|
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 = "Rust rewrite of Devour";
|
|
homepage = "https://github.com/EmperorPenguin18/gobble";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ vuimuich ];
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "gobble";
|
|
};
|
|
}
|