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

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

major + minor + "00"