nixpkgs/pkgs/applications/misc/llpp/default.nix

58 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, lib, substituteAll, makeWrapper, fetchgit, ocaml, mupdf, libX11,
2019-11-10 17:44:34 +01:00
libGLU, libGL, freetype, xclip, inotify-tools, procps }:
assert lib.versionAtLeast (lib.getVersion ocaml) "4.07";
2016-09-19 19:00:42 +02:00
2018-07-20 19:56:59 +02:00
stdenv.mkDerivation rec {
pname = "llpp";
version = "32";
src = fetchgit {
url = "git://repo.or.cz/llpp.git";
rev = "v${version}";
sha256 = "1h1zysm5cz8laq8li49djl6929cnrjlflag9hw0c1dcr4zaxk32y";
fetchSubmodules = false;
};
patches = (substituteAll {
inherit version;
src = ./fix-build-bash.patch;
});
nativeBuildInputs = [ makeWrapper ];
2019-11-10 17:44:34 +01:00
buildInputs = [ ocaml mupdf libX11 libGLU libGL freetype ];
dontStrip = true;
configurePhase = ''
mkdir -p build/mupdf/thirdparty
ln -s ${freetype.dev} build/mupdf/thirdparty/freetype
'';
buildPhase = ''
bash ./build.bash build
'';
installPhase = ''
2019-02-26 19:37:41 +01:00
install -d $out/bin
install build/llpp $out/bin
2019-02-26 19:38:01 +01:00
install misc/llpp.inotify $out/bin/llpp.inotify
wrapProgram $out/bin/llpp \
--prefix PATH ":" "${xclip}/bin"
2019-02-26 19:38:01 +01:00
wrapProgram $out/bin/llpp.inotify \
--prefix PATH ":" "$out/bin" \
--prefix PATH ":" "${inotify-tools}/bin" \
--prefix PATH ":" "${procps}/bin"
'';
meta = with stdenv.lib; {
homepage = "https://repo.or.cz/w/llpp.git";
description = "A MuPDF based PDF pager written in OCaml";
platforms = platforms.linux;
maintainers = with maintainers; [ pSub enzime ];
license = licenses.gpl3;
};
}