2024-11-20 17:07:10 -05:00
|
|
|
{
|
2024-11-20 20:12:24 -05:00
|
|
|
concatStrings,
|
2024-11-20 17:07:10 -05:00
|
|
|
stringToCharacters,
|
|
|
|
substring,
|
|
|
|
tail,
|
|
|
|
toUpper,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
mkVersion = src: "0.0.0+" + src.shortRev;
|
2024-11-20 20:12:24 -05:00
|
|
|
capitalise = str: (toUpper (substring 0 1 str) + (concatStrings (tail (stringToCharacters str))));
|
2024-11-20 17:07:10 -05:00
|
|
|
}
|