Nix For Lang Packaging: Difference between revisions
imported>Samueldr m (syntaxhighlight!) |
imported>Samueldr m Fixes most probably a pythonic mistake with ''' → '' / """ |
||
| Line 15: | Line 15: | ||
src = "..."; | src = "..."; | ||
buildInputs = [ lang ]; | buildInputs = [ lang ]; | ||
buildPhase = | buildPhase = '' | ||
lang build | lang build | ||
''; | |||
installPhase = | installPhase = '' | ||
cp buildfolder $out | cp buildfolder $out | ||
''; | |||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||