nixpkgs/pkgs/by-name/ap/apvlv/package.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

116 lines
2.3 KiB
Nix

{
cmake,
copyDesktopItems,
ebook_tools,
fetchFromGitHub,
freetype,
ghostscript,
gtk3,
installShellFiles,
lib,
libepoxy,
libpthreadstubs,
libXdmcp,
libxkbcommon,
libxml2,
libxshmfence,
man,
pcre,
pkg-config,
poppler,
stdenv,
testers,
webkitgtk_4_0,
wrapGAppsHook3,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "apvlv";
# If you change the version, please also update src.rev accordingly
version = "0.5.0";
src = fetchFromGitHub {
owner = "naihe2010";
repo = "apvlv";
rev = "refs/tags/v0.5.0-final";
hash = "sha256-5Wbv3dXieymhhPmEKQu8X/38WsDA1T/IBPoMXdpzcaA=";
};
env.NIX_CFLAGS_COMPILE = "-I${poppler.dev}/include/poppler";
nativeBuildInputs = [
cmake
copyDesktopItems
ghostscript
installShellFiles
man
pkg-config
wrapGAppsHook3
];
buildInputs = [
ebook_tools
freetype
gtk3
libepoxy
libpthreadstubs
libXdmcp
libxkbcommon
libxml2
libxshmfence # otherwise warnings in compilation
pcre
poppler
webkitgtk_4_0
];
installPhase = ''
runHook preInstall
# binary
mkdir -p $out/bin
cp src/apvlv $out/bin/apvlv
# displays pdfStartup.pdf as default pdf entry
mkdir -p $out/share/doc/apvlv/
cp ../Startup.pdf $out/share/doc/apvlv/Startup.pdf
cp ../main_menubar.glade $out/share/doc/apvlv/main_menubar.glade
mkdir -p $out/etc
cp ../apvlvrc.example $out/etc/apvlvrc
installManPage ../apvlv.1
runHook postInstall
'';
desktopItems = [
"../apvlv.desktop"
];
passthru = {
tests.version = testers.testVersion {
command = "${lib.getExe finalAttrs.finalPackage} -v";
package = finalAttrs.finalPackage;
version = "${finalAttrs.version}-rel";
};
};
meta = {
changelog = "https://github.com/naihe2010/apvlv/blob/v${finalAttrs.version}/NEWS";
description = "PDF viewer with Vim-like behaviour";
homepage = "https://naihe2010.github.io/apvlv/";
license = lib.licenses.lgpl2;
longDescription = ''
apvlv is a PDF/DJVU/UMD/TXT Viewer Under Linux/WIN32
with Vim-like behaviour.
'';
mainProgram = "apvlv";
maintainers = with lib.maintainers; [
ardumont
anthonyroussel
];
platforms = lib.platforms.linux;
};
})