We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af6f069 commit d7cd4f3Copy full SHA for d7cd4f3
pkgs/by-name/in/incus-ui-canonical/package.nix
@@ -9,6 +9,7 @@
9
yarn,
10
nixosTests,
11
git,
12
+ nix-update-script,
13
}:
14
let
15
# this rarely changes https://github.com/zabbly/incus/blob/daily/patches/ui-canonical-renames.sed
@@ -72,7 +73,16 @@ stdenv.mkDerivation rec {
72
73
runHook postInstall
74
'';
75
- passthru.tests.default = nixosTests.incus.ui;
76
+ passthru = {
77
+ tests.default = nixosTests.incus.ui;
78
+
79
+ updateScript = nix-update-script {
80
+ extraArgs = [
81
+ "--version-regex"
82
+ "incus-([0-9\\.]+)"
83
+ ];
84
+ };
85
86
87
meta = {
88
description = "Web user interface for Incus";
0 commit comments