mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
13 lines
236 B
Nix
13 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
|
||
|
'';
|
||
|
};
|
||
|
}
|