Files
nixpkgs/pkgs/by-name/le/leela/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

37 lines
775 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
pkg-config,
poppler,
}:
stdenv.mkDerivation {
pname = "leela";
version = "12.fe7a35a";
src = fetchFromGitHub {
owner = "TrilbyWhite";
repo = "Leela";
rev = "576a60185b191d3a3030fef10492fe32d2125563";
sha256 = "1k6n758r9dhjmc1pnpk6qzpg0q7pkq2hf18z3b0s2z198jpkg9s3";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ poppler ];
installFlags = [
"PREFIX=$(out)"
"MANDIR=$(out)/share/man"
];
meta = {
description = "CLI frontend to the poppler-glib library of PDF tools";
homepage = "https://github.com/TrilbyWhite/Leela";
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.puffnfresh ];
platforms = lib.platforms.linux;
mainProgram = "leela";
};
}