mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-04 10:29:34 +00:00
Nix: use non-headless jre. now required for image/pdf code
This commit is contained in:
parent
b566e610c9
commit
0d650616e3
10
nix/pkg.nix
10
nix/pkg.nix
@ -1,4 +1,4 @@
|
|||||||
cfg: {stdenv, fetchzip, file, curl, inotifyTools, fetchurl, jre8_headless, bash}:
|
cfg: {stdenv, fetchzip, file, curl, inotifyTools, fetchurl, jre8, bash}:
|
||||||
let
|
let
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Docspell helps to organize and archive your paper documents.";
|
description = "Docspell helps to organize and archive your paper documents.";
|
||||||
@ -12,7 +12,7 @@ in
|
|||||||
|
|
||||||
src = fetchzip cfg.server;
|
src = fetchzip cfg.server;
|
||||||
|
|
||||||
buildInputs = [ jre8_headless ];
|
buildInputs = [ jre8 ];
|
||||||
|
|
||||||
buildPhase = "true";
|
buildPhase = "true";
|
||||||
|
|
||||||
@ -21,7 +21,7 @@ in
|
|||||||
cp -R * $out/docspell-restserver-${cfg.version}/
|
cp -R * $out/docspell-restserver-${cfg.version}/
|
||||||
cat > $out/bin/docspell-restserver <<-EOF
|
cat > $out/bin/docspell-restserver <<-EOF
|
||||||
#!${bash}/bin/bash
|
#!${bash}/bin/bash
|
||||||
$out/docspell-restserver-${cfg.version}/bin/docspell-restserver -java-home ${jre8_headless} "\$@"
|
$out/docspell-restserver-${cfg.version}/bin/docspell-restserver -java-home ${jre8} "\$@"
|
||||||
EOF
|
EOF
|
||||||
chmod 755 $out/bin/docspell-restserver
|
chmod 755 $out/bin/docspell-restserver
|
||||||
'';
|
'';
|
||||||
@ -34,7 +34,7 @@ in
|
|||||||
|
|
||||||
src = fetchzip cfg.joex;
|
src = fetchzip cfg.joex;
|
||||||
|
|
||||||
buildInputs = [ jre8_headless ];
|
buildInputs = [ jre8 ];
|
||||||
|
|
||||||
buildPhase = "true";
|
buildPhase = "true";
|
||||||
|
|
||||||
@ -43,7 +43,7 @@ in
|
|||||||
cp -R * $out/docspell-joex-${cfg.version}/
|
cp -R * $out/docspell-joex-${cfg.version}/
|
||||||
cat > $out/bin/docspell-joex <<-EOF
|
cat > $out/bin/docspell-joex <<-EOF
|
||||||
#!${bash}/bin/bash
|
#!${bash}/bin/bash
|
||||||
$out/docspell-joex-${cfg.version}/bin/docspell-joex -java-home ${jre8_headless} "\$@"
|
$out/docspell-joex-${cfg.version}/bin/docspell-joex -java-home ${jre8} "\$@"
|
||||||
EOF
|
EOF
|
||||||
chmod 755 $out/bin/docspell-joex
|
chmod 755 $out/bin/docspell-joex
|
||||||
'';
|
'';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user