mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
221056c59f
Setting `outputSpecified` prevents `getOutput` from descending into outputs, which don't have an overridden `outPath`. Additionally, use `__spliced` to permit derivations to use the dummy as an input.
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ config, ... }:
|
|
|
|
{
|
|
services.git-sync = {
|
|
enable = true;
|
|
package = config.lib.test.mkStubPackage { outPath = "@git-sync@"; };
|
|
repositories.test = {
|
|
path = "/a/path";
|
|
uri = "git+ssh://user@example.com:/~user/path/to/repo.git";
|
|
};
|
|
};
|
|
|
|
test.stubs.openssh = { name = "openssh"; };
|
|
|
|
nmt.script = ''
|
|
serviceFile=home-files/.config/systemd/user/git-sync-test.service
|
|
|
|
assertFileExists $serviceFile
|
|
|
|
serviceFile=$(normalizeStorePaths $serviceFile)
|
|
assertFileContent $serviceFile ${
|
|
builtins.toFile "expected" ''
|
|
[Install]
|
|
WantedBy=default.target
|
|
|
|
[Service]
|
|
Environment=PATH=@openssh@/bin:/nix/store/00000000000000000000000000000000-git/bin
|
|
Environment=GIT_SYNC_DIRECTORY=/a/path
|
|
Environment=GIT_SYNC_COMMAND=@git-sync@/bin/git-sync
|
|
Environment=GIT_SYNC_REPOSITORY=git+ssh://user@example.com:/~user/path/to/repo.git
|
|
Environment=GIT_SYNC_INTERVAL=500
|
|
ExecStart=@git-sync@/bin/git-sync-on-inotify
|
|
Restart=on-abort
|
|
|
|
[Unit]
|
|
Description=Git Sync test
|
|
''
|
|
}
|
|
'';
|
|
}
|