nixos-config/users/simon/modules/neovim/UltiSnips/nix.snippets

36 lines
614 B
Plaintext

snippet sha256 "dummy sha256 hash"
sha256 = "0000000000000000000000000000000000000000000000000000";
endsnippet
snippet unpackPhase "unpackPhase template"
unpackPhase = ''
runHook preUnpack
$1
runHook postUnpack
'';
endsnippet
snippet configurePhase "configurePhase template"
configurePhase = ''
runHook preConfigure
$1
runHook postConfigure
'';
endsnippet
snippet buildPhase "buildPhase template"
buildPhase = ''
runHook preBuild
$1
runHook postBuild
'';
endsnippet
snippet installPhase "installPhase template"
installPhase = ''
runHook preInstall
$1
runHook postInstall
'';
endsnippet