mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-22 02:18:26 +00:00
Update nix setup
This commit is contained in:
@ -1,5 +1,16 @@
|
|||||||
rec {
|
rec {
|
||||||
cfg = {
|
cfg = {
|
||||||
|
v0_36_0 = rec {
|
||||||
|
version = "0.36.0";
|
||||||
|
server = {
|
||||||
|
url = "https://github.com/eikek/docspell/releases/download/v${version}/docspell-restserver-${version}.zip";
|
||||||
|
sha256 = "sha256-0qDsvEN5ohv/xvkHywonfMtf3p871VdegJqrg7DaAak=";
|
||||||
|
};
|
||||||
|
joex = {
|
||||||
|
url = "https://github.com/eikek/docspell/releases/download/v${version}/docspell-joex-${version}.zip";
|
||||||
|
sha256 = "sha256-ovNSdjEKY1oaQruTQN23sGK4lHuBoYgTLVocVNYIt9Y=";
|
||||||
|
};
|
||||||
|
};
|
||||||
v0_35_0 = rec {
|
v0_35_0 = rec {
|
||||||
version = "0.35.0";
|
version = "0.35.0";
|
||||||
server = {
|
server = {
|
||||||
@ -87,7 +98,7 @@ rec {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
pkg = v: import ./pkg.nix v;
|
pkg = v: import ./pkg.nix v;
|
||||||
currentPkg = pkg cfg.v0_35_0;
|
currentPkg = pkg cfg.v0_36_0;
|
||||||
module-joex = ./module-joex.nix;
|
module-joex = ./module-joex.nix;
|
||||||
module-restserver = ./module-server.nix;
|
module-restserver = ./module-server.nix;
|
||||||
modules = [ module-joex
|
modules = [ module-joex
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Creates the documentation website and pushes it to the branch
|
# Creates the documentation website and pushes it to the branch
|
||||||
# 'current-docs' in order to be published.
|
# 'gh-pages' in order to be published.
|
||||||
#
|
#
|
||||||
# It is a fallback, when `sbt publish-website` is not working due to
|
# It is a fallback, when `sbt publish-website` is not working due to
|
||||||
# too large payloads (as it seems) that prohibit uploading through
|
# too large payloads (as it seems) that prohibit uploading through
|
||||||
|
Reference in New Issue
Block a user