mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
58 lines
1.5 KiB
Nix
58 lines
1.5 KiB
Nix
{ stdenv, lib, substituteAll, makeWrapper, fetchgit, ocaml, mupdf, libX11, jbig2dec, openjpeg, libjpeg , lcms2, harfbuzz,
|
|
libGLU, libGL, gumbo, freetype, zlib, xclip, inotify-tools, procps }:
|
|
|
|
assert lib.versionAtLeast (lib.getVersion ocaml) "4.07";
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "llpp";
|
|
version = "33";
|
|
|
|
src = fetchgit {
|
|
url = "git://repo.or.cz/llpp.git";
|
|
rev = "v${version}";
|
|
sha256 = "0shqzhaflm2yhkx6c0csq9lxp1s1r7lh5kgpx9q5k06xya2a7yvs";
|
|
fetchSubmodules = false;
|
|
};
|
|
|
|
patches = (substituteAll {
|
|
inherit version;
|
|
src = ./fix-build-bash.patch;
|
|
});
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ ocaml mupdf libX11 libGLU libGL freetype zlib gumbo jbig2dec openjpeg libjpeg lcms2 harfbuzz ];
|
|
|
|
dontStrip = true;
|
|
|
|
configurePhase = ''
|
|
mkdir -p build/mupdf/thirdparty
|
|
ln -s ${freetype.dev} build/mupdf/thirdparty/freetype
|
|
'';
|
|
|
|
buildPhase = ''
|
|
bash ./build.bash build
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -d $out/bin
|
|
install build/llpp $out/bin
|
|
install misc/llpp.inotify $out/bin/llpp.inotify
|
|
|
|
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://repo.or.cz/w/llpp.git";
|
|
description = "A MuPDF based PDF pager written in OCaml";
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ pSub ];
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|