1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 02:36:54 +00:00
home-manager/tests/modules/programs/gh/extensions.nix

27 lines
464 B
Nix
Raw Normal View History

{ pkgs, ... }:
2022-07-27 22:39:03 +02:00
{
programs.gh = {
enable = true;
extensions = [ pkgs.gh-eco ];
};
test.stubs = {
gh-eco = {
name = "gh-eco";
buildScript = ''
mkdir -p $out/bin
touch $out/bin/gh-eco
chmod +x $out/bin/gh-eco
'';
outPath = null;
};
};
nmt.script = ''
gh_eco=home-files/.local/share/gh/extensions/gh-eco/gh-eco
assertFileExists "$gh_eco"
assertFileIsExecutable "$gh_eco"
'';
}