571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
78 lines
1.8 KiB
Nix
78 lines
1.8 KiB
Nix
{ stdenv
|
|
, lib
|
|
, makeWrapper
|
|
, fetchFromGitHub
|
|
, ocaml
|
|
, pkg-config
|
|
, mupdf
|
|
, libX11
|
|
, jbig2dec
|
|
, openjpeg
|
|
, libjpeg
|
|
, lcms2
|
|
, harfbuzz
|
|
, libGLU
|
|
, libGL
|
|
, gumbo
|
|
, freetype
|
|
, zlib
|
|
, xclip
|
|
, inotify-tools
|
|
, procps
|
|
, darwin
|
|
}:
|
|
|
|
assert lib.versionAtLeast (lib.getVersion ocaml) "4.07";
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "llpp";
|
|
version = "42";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "criticic";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-B/jKvBtBwMOErUVmGFGXXIT8FzMl1DFidfDCHIH41TU=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i "2d;s/ver=.*/ver=${version}/" build.bash
|
|
'';
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [ makeWrapper ocaml pkg-config ];
|
|
buildInputs = [ mupdf libX11 freetype zlib gumbo jbig2dec openjpeg libjpeg lcms2 harfbuzz ]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [ libGLU libGL ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.OpenGL darwin.apple_sdk.frameworks.Cocoa ];
|
|
|
|
dontStrip = true;
|
|
|
|
buildPhase = ''
|
|
bash ./build.bash build
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -d $out/bin
|
|
install build/llpp $out/bin
|
|
install misc/llpp.inotify $out/bin/llpp.inotify
|
|
install -Dm444 misc/llpp.desktop -t $out/share/applications
|
|
'' + lib.optionalString stdenv.hostPlatform.isLinux ''
|
|
wrapProgram $out/bin/llpp \
|
|
--prefix PATH ":" "${xclip}/bin"
|
|
|
|
wrapProgram $out/bin/llpp.inotify \
|
|
--prefix PATH ":" "$out/bin" \
|
|
--prefix PATH ":" "${inotify-tools}/bin" \
|
|
--prefix PATH ":" "${procps}/bin"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/criticic/llpp";
|
|
description = "MuPDF based PDF pager written in OCaml";
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ pSub ];
|
|
license = [ licenses.publicDomain licenses.bsd3 ];
|
|
};
|
|
}
|