mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
831cd8b655
Features: - Upload PDF files let them analyze - Manage meta data and items - See processing in webapp
17 lines
425 B
Nix
17 lines
425 B
Nix
with import <nixpkgs> { };
|
|
let
|
|
initScript = writeScript "docspell-build-init" ''
|
|
export LD_LIBRARY_PATH=
|
|
${bash}/bin/bash -c sbt
|
|
'';
|
|
in
|
|
buildFHSUserEnv {
|
|
name = "docspell-sbt";
|
|
targetPkgs = pkgs: with pkgs; [
|
|
netcat jdk8 wget which zsh dpkg sbt git elmPackages.elm ncurses fakeroot mc jekyll
|
|
# haskells http client needs this (to download elm packages)
|
|
iana-etc
|
|
];
|
|
runScript = initScript;
|
|
}
|