mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
232bc96376
This reverts commit e28a586f94
.
12 lines
188 B
Nix
12 lines
188 B
Nix
lib: version:
|
|
|
|
with lib;
|
|
|
|
let
|
|
fragments = splitString "." version;
|
|
major = head fragments;
|
|
minor = concatMapStrings (fixedWidthNumber 2) (tail fragments);
|
|
in
|
|
|
|
major + minor + "00"
|