Bump keepbook
This commit is contained in:
6
nixos/flake.lock
generated
6
nixos/flake.lock
generated
@@ -1318,11 +1318,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1770934405,
|
"lastModified": 1770966681,
|
||||||
"narHash": "sha256-So7/cClgSGy9T0/qRfdO+Wths8wAmFW2w51WooSyFs0=",
|
"narHash": "sha256-0XHEyYw9jaY3mfDcv833QhXR7MLwY95ilj1JcH2ziRw=",
|
||||||
"owner": "colonelpanic8",
|
"owner": "colonelpanic8",
|
||||||
"repo": "keepbook",
|
"repo": "keepbook",
|
||||||
"rev": "0b035c3aea0a6b40d095ac0ffb784e8a1a4f5a93",
|
"rev": "5b0bf0c1b0009154a48cf9a6f938452121340f0f",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|||||||
@@ -1,7 +1,13 @@
|
|||||||
{ config, lib, pkgs, inputs, makeEnable, ... }:
|
{ config, lib, pkgs, inputs, makeEnable, ... }:
|
||||||
let
|
let
|
||||||
cfg = config.myModules."keepbook-sync";
|
cfg = config.myModules."keepbook-sync";
|
||||||
keepbookTray = inputs.keepbook.packages.${pkgs.stdenv.hostPlatform.system}.keepbook-tray;
|
keepbookTray =
|
||||||
|
inputs.keepbook.packages.${pkgs.stdenv.hostPlatform.system}.keepbook-tray.overrideAttrs (_: {
|
||||||
|
# Upstream currently includes a contract test that expects a built TS CLI
|
||||||
|
# entrypoint under ts/dist/, but the Nix build does not build the TS
|
||||||
|
# artifacts first. Skip checks to keep the package usable on NixOS.
|
||||||
|
doCheck = false;
|
||||||
|
});
|
||||||
|
|
||||||
daemonArgs = [
|
daemonArgs = [
|
||||||
"--config" cfg.configPath
|
"--config" cfg.configPath
|
||||||
|
|||||||
Reference in New Issue
Block a user