Skip to content

Commit 999d6cd

Browse files
authored
nixos/archtika: fix module and package (#392678)
2 parents 62f8086 + 2c916c0 commit 999d6cd

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

nixos/modules/services/web-apps/archtika.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ let
1717
in
1818
{
1919
options.services.archtika = {
20-
enable = mkEnableOption "Whether to enable the archtika service";
20+
enable = mkEnableOption "the archtika CMS";
2121

2222
package = mkPackageOption pkgs "archtika" { };
2323

pkgs/by-name/ar/archtika/package.nix

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@
99
}:
1010

1111
let
12-
version = "1.2.0";
12+
version = "1.2.1";
1313

1414
src = fetchFromGitHub {
1515
owner = "archtika";
1616
repo = "archtika";
1717
tag = "v${version}";
18-
hash = "sha256-ba9da7LqCE/e2lhRVHD7GOhwOj1fNTBbN/pARPMzIg4=";
18+
hash = "sha256-GffYAtLs12v2Lt1WoKJOG5dZsmzDcySZKFBQwCT9nnY=";
1919
};
2020

2121
web = buildNpmPackage {
2222
name = "web-app";
2323
src = "${src}/web-app";
24-
npmDepsHash = "sha256-RTyo7K/Hr1hBGtcBKynrziUInl91JqZl84NkJg16ufA=";
24+
npmDepsHash = "sha256-2udi8vLLvdoZxIyRKLOCfEpEMsooxsIrM1wiua1QPAI=";
2525
npmFlags = [ "--legacy-peer-deps" ];
2626
installPhase = ''
2727
mkdir -p $out/web-app
@@ -50,7 +50,10 @@ symlinkJoin {
5050
api
5151
];
5252

53-
passthru.updateScript = nix-update-script { };
53+
passthru = {
54+
inherit src web;
55+
updateScript = nix-update-script { };
56+
};
5457

5558
meta = {
5659
description = "Modern, performant and lightweight CMS";

0 commit comments

Comments
 (0)