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

36 lines
614 B
Plaintext
Raw Normal View History

2021-01-22 20:18:39 +01:00
snippet sha256 "dummy sha256 hash"
sha256 = "0000000000000000000000000000000000000000000000000000";
endsnippet
2021-07-17 14:23:32 +02:00
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"
2021-07-24 19:21:52 +02:00
installPhase = ''
2021-07-17 14:23:32 +02:00
runHook preInstall
$1
runHook postInstall
'';
endsnippet