about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/sqlite/archive-version.nix
blob: 1f312ecef23a745788ae625763bcfc177c0d1a0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
lib: version:

with lib;
  
let
  fragments = splitString "." version;
  major = head fragments;
  minor = concatMapStrings (fixedWidthNumber 2) (tail fragments);
in

major + minor + "00"