mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
2917ef23b3
- Enable use-plugins test. - Stub out `kakoune-unwrapped` to avoid unnecessary downloads. - Unwrap unnecessary `config` attributes.
12 lines
236 B
Nix
12 lines
236 B
Nix
{
|
|
test.stubs.kakoune-unwrapped = {
|
|
name = "dummy-kakoune";
|
|
version = "1";
|
|
outPath = null;
|
|
buildScript = ''
|
|
mkdir -p $out/bin $out/share/kak/doc
|
|
touch $out/bin/kak
|
|
chmod +x $out/bin/kak
|
|
'';
|
|
};
|
|
}
|