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
48 lines
1010 B
Nix
48 lines
1010 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
pkg-config,
|
|
cairo,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "tdf";
|
|
version = "0.4.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "itsjunetime";
|
|
repo = "tdf";
|
|
fetchSubmodules = true;
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-ZC7yQt2ssbRWP7EP7QBrLe8mN9Z9Va4eLivEP/78YpM=";
|
|
};
|
|
|
|
cargoHash = "sha256-8JGiKlVr41YbG+mI/S0xPByKa4pwAH4cDVlznRcfCxE=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [
|
|
rustPlatform.bindgenHook
|
|
cairo
|
|
];
|
|
|
|
# Tests depend on cpuprofiler, which is not packaged in nixpkgs
|
|
doCheck = false;
|
|
|
|
# requires nightly features (feature(portable_simd))
|
|
RUSTC_BOOTSTRAP = true;
|
|
|
|
meta = {
|
|
description = "Tui-based PDF viewer";
|
|
homepage = "https://github.com/itsjunetime/tdf";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = with lib.maintainers; [
|
|
luftmensch-luftmensch
|
|
DieracDelta
|
|
];
|
|
mainProgram = "tdf";
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|