2009-02-09 16:51:03 +00:00
|
|
|
|
/* String manipulation functions. */
|
|
|
|
|
|
2009-05-24 11:57:46 +01:00
|
|
|
|
let lib = import ./default.nix;
|
|
|
|
|
|
2014-10-04 16:02:29 +01:00
|
|
|
|
inherit (builtins) length;
|
2009-05-24 11:57:46 +01:00
|
|
|
|
|
|
|
|
|
in
|
2009-02-09 16:51:03 +00:00
|
|
|
|
|
|
|
|
|
rec {
|
2013-11-12 12:48:19 +00:00
|
|
|
|
|
2015-07-24 14:45:41 +01:00
|
|
|
|
inherit (builtins) stringLength substring head tail isString replaceStrings;
|
2009-02-09 16:51:03 +00:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Concatenate a list of strings.
|
2009-02-09 16:51:03 +00:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
|
|
|
|
concatStrings ["foo" "bar"]
|
|
|
|
|
=> "foobar"
|
|
|
|
|
*/
|
2016-06-17 11:06:48 +01:00
|
|
|
|
concatStrings = builtins.concatStringsSep "";
|
2009-02-09 16:51:03 +00:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Map a function over a list and concatenate the resulting strings.
|
2009-02-09 16:51:03 +00:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
|
|
|
|
concatMapStrings (x: "a" + x) ["foo" "bar"]
|
|
|
|
|
=> "afooabar"
|
|
|
|
|
*/
|
2009-02-09 16:51:03 +00:00
|
|
|
|
concatMapStrings = f: list: concatStrings (map f list);
|
2016-02-28 23:27:35 +00:00
|
|
|
|
|
|
|
|
|
/* Like `concatMapStrings' except that the f functions also gets the
|
|
|
|
|
position as a parameter.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
concatImapStrings (pos: x: "${toString pos}-${x}") ["foo" "bar"]
|
|
|
|
|
=> "1-foo2-bar"
|
|
|
|
|
*/
|
2011-08-19 03:42:34 +01:00
|
|
|
|
concatImapStrings = f: list: concatStrings (lib.imap f list);
|
2012-03-28 16:43:39 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Place an element between each element of a list
|
2009-02-09 16:51:03 +00:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
|
|
|
|
intersperse "/" ["usr" "local" "bin"]
|
|
|
|
|
=> ["usr" "/" "local" "/" "bin"].
|
|
|
|
|
*/
|
2009-02-09 16:51:03 +00:00
|
|
|
|
intersperse = separator: list:
|
2012-08-13 19:19:31 +01:00
|
|
|
|
if list == [] || length list == 1
|
2009-02-09 16:51:03 +00:00
|
|
|
|
then list
|
2015-07-24 14:55:39 +01:00
|
|
|
|
else tail (lib.concatMap (x: [separator x]) list);
|
2009-02-09 16:51:03 +00:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Concatenate a list of strings with a separator between each element
|
2009-02-09 16:51:03 +00:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
|
|
|
|
concatStringsSep "/" ["usr" "local" "bin"]
|
|
|
|
|
=> "usr/local/bin"
|
|
|
|
|
*/
|
2015-07-24 01:38:46 +01:00
|
|
|
|
concatStringsSep = builtins.concatStringsSep or (separator: list:
|
|
|
|
|
concatStrings (intersperse separator list));
|
2009-02-09 16:51:03 +00:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* First maps over the list and then concatenates it.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
concatMapStringsSep "-" (x: toUpper x) ["foo" "bar" "baz"]
|
|
|
|
|
=> "FOO-BAR-BAZ"
|
|
|
|
|
*/
|
2014-08-25 09:23:10 +01:00
|
|
|
|
concatMapStringsSep = sep: f: list: concatStringsSep sep (map f list);
|
2016-02-28 23:27:35 +00:00
|
|
|
|
|
|
|
|
|
/* First imaps over the list and then concatenates it.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
concatImapStringsSep "-" (pos: x: toString (x / pos)) [ 6 6 6 ]
|
|
|
|
|
=> "6-3-2"
|
|
|
|
|
*/
|
2014-08-25 09:23:10 +01:00
|
|
|
|
concatImapStringsSep = sep: f: list: concatStringsSep sep (lib.imap f list);
|
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Construct a Unix-style search path consisting of each `subDir"
|
|
|
|
|
directory of the given list of packages.
|
2009-02-09 16:51:03 +00:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
|
|
|
|
makeSearchPath "bin" ["/root" "/usr" "/usr/local"]
|
|
|
|
|
=> "/root/bin:/usr/bin:/usr/local/bin"
|
|
|
|
|
makeSearchPath "bin" ["/"]
|
|
|
|
|
=> "//bin"
|
|
|
|
|
*/
|
2012-03-28 16:43:39 +01:00
|
|
|
|
makeSearchPath = subDir: packages:
|
2009-04-05 19:05:11 +01:00
|
|
|
|
concatStringsSep ":" (map (path: path + "/" + subDir) packages);
|
|
|
|
|
|
2016-04-14 16:14:28 +01:00
|
|
|
|
/* Construct a Unix-style search path, using given package output.
|
2016-04-13 13:33:21 +01:00
|
|
|
|
If no output is found, fallback to `.out` and then to the default.
|
|
|
|
|
|
|
|
|
|
Example:
|
2016-04-14 16:14:28 +01:00
|
|
|
|
makeSearchPathOutput "dev" "bin" [ pkgs.openssl pkgs.zlib ]
|
|
|
|
|
=> "/nix/store/9rz8gxhzf8sw4kf2j2f1grr49w8zx5vj-openssl-1.0.1r-dev/bin:/nix/store/wwh7mhwh269sfjkm6k5665b5kgp7jrk2-zlib-1.2.8/bin"
|
2016-04-13 13:33:21 +01:00
|
|
|
|
*/
|
2016-04-14 16:14:28 +01:00
|
|
|
|
makeSearchPathOutput = output: subDir: pkgs: makeSearchPath subDir (map (lib.getOutput output) pkgs);
|
2016-04-13 13:33:21 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Construct a library search path (such as RPATH) containing the
|
|
|
|
|
libraries for a set of packages
|
2009-04-05 19:05:11 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
|
|
|
|
makeLibraryPath [ "/usr" "/usr/local" ]
|
|
|
|
|
=> "/usr/lib:/usr/local/lib"
|
|
|
|
|
pkgs = import <nixpkgs> { }
|
|
|
|
|
makeLibraryPath [ pkgs.openssl pkgs.zlib ]
|
|
|
|
|
=> "/nix/store/9rz8gxhzf8sw4kf2j2f1grr49w8zx5vj-openssl-1.0.1r/lib:/nix/store/wwh7mhwh269sfjkm6k5665b5kgp7jrk2-zlib-1.2.8/lib"
|
|
|
|
|
*/
|
2016-04-14 16:15:11 +01:00
|
|
|
|
makeLibraryPath = makeSearchPathOutput "lib" "lib";
|
2009-02-09 16:51:03 +00:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Construct a binary search path (such as $PATH) containing the
|
|
|
|
|
binaries for a set of packages.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
makeBinPath ["/root" "/usr" "/usr/local"]
|
|
|
|
|
=> "/root/bin:/usr/bin:/usr/local/bin"
|
|
|
|
|
*/
|
2016-04-14 16:15:11 +01:00
|
|
|
|
makeBinPath = makeSearchPathOutput "bin" "bin";
|
2015-12-10 11:40:38 +00:00
|
|
|
|
|
2009-02-09 16:51:03 +00:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Construct a perl search path (such as $PERL5LIB)
|
|
|
|
|
|
|
|
|
|
FIXME(zimbatm): this should be moved in perl-specific code
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
pkgs = import <nixpkgs> { }
|
|
|
|
|
makePerlPath [ pkgs.perlPackages.NetSMTP ]
|
|
|
|
|
=> "/nix/store/n0m1fk9c960d8wlrs62sncnadygqqc6y-perl-Net-SMTP-1.25/lib/perl5/site_perl"
|
|
|
|
|
*/
|
2016-04-14 16:15:11 +01:00
|
|
|
|
makePerlPath = makeSearchPathOutput "lib" "lib/perl5/site_perl";
|
2012-03-28 16:43:39 +01:00
|
|
|
|
|
2017-04-19 20:41:28 +01:00
|
|
|
|
/* Depending on the boolean `cond', return either the given string
|
|
|
|
|
or the empty string. Useful to concatenate against a bigger string.
|
2011-01-05 12:54:37 +00:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
|
|
|
|
optionalString true "some-string"
|
|
|
|
|
=> "some-string"
|
|
|
|
|
optionalString false "some-string"
|
|
|
|
|
=> ""
|
|
|
|
|
*/
|
2009-02-09 16:51:03 +00:00
|
|
|
|
optionalString = cond: string: if cond then string else "";
|
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Determine whether a string has given prefix.
|
2012-03-28 16:43:39 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
|
|
|
|
hasPrefix "foo" "foobar"
|
|
|
|
|
=> true
|
|
|
|
|
hasPrefix "foo" "barfoo"
|
|
|
|
|
=> false
|
|
|
|
|
*/
|
2014-05-13 10:05:37 +01:00
|
|
|
|
hasPrefix = pref: str:
|
2015-07-24 14:48:29 +01:00
|
|
|
|
substring 0 (stringLength pref) str == pref;
|
2016-02-28 23:27:35 +00:00
|
|
|
|
|
|
|
|
|
/* Determine whether a string has given suffix.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
hasSuffix "foo" "foobar"
|
|
|
|
|
=> false
|
|
|
|
|
hasSuffix "foo" "barfoo"
|
|
|
|
|
=> true
|
|
|
|
|
*/
|
2016-08-10 19:06:28 +01:00
|
|
|
|
hasSuffix = suffix: content:
|
2014-06-10 10:55:25 +01:00
|
|
|
|
let
|
2016-08-10 19:06:28 +01:00
|
|
|
|
lenContent = stringLength content;
|
|
|
|
|
lenSuffix = stringLength suffix;
|
|
|
|
|
in lenContent >= lenSuffix &&
|
|
|
|
|
substring (lenContent - lenSuffix) lenContent content == suffix;
|
2009-02-09 16:51:03 +00:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Convert a string to a list of characters (i.e. singleton strings).
|
|
|
|
|
This allows you to, e.g., map a function over each character. However,
|
|
|
|
|
note that this will likely be horribly inefficient; Nix is not a
|
|
|
|
|
general purpose programming language. Complex string manipulations
|
|
|
|
|
should, if appropriate, be done in a derivation.
|
|
|
|
|
Also note that Nix treats strings as a list of bytes and thus doesn't
|
|
|
|
|
handle unicode.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
stringToCharacters ""
|
|
|
|
|
=> [ ]
|
|
|
|
|
stringToCharacters "abc"
|
|
|
|
|
=> [ "a" "b" "c" ]
|
|
|
|
|
stringToCharacters "💩"
|
|
|
|
|
=> [ "<EFBFBD>" "<EFBFBD>" "<EFBFBD>" "<EFBFBD>" ]
|
|
|
|
|
*/
|
2015-07-24 14:45:41 +01:00
|
|
|
|
stringToCharacters = s:
|
|
|
|
|
map (p: substring p 1 s) (lib.range 0 (stringLength s - 1));
|
2009-02-09 16:51:03 +00:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Manipulate a string character by character and replace them by
|
|
|
|
|
strings before concatenating the results.
|
2012-03-28 16:43:39 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
|
|
|
|
stringAsChars (x: if x == "a" then "i" else x) "nax"
|
|
|
|
|
=> "nix"
|
|
|
|
|
*/
|
2009-10-06 10:21:52 +01:00
|
|
|
|
stringAsChars = f: s:
|
|
|
|
|
concatStrings (
|
|
|
|
|
map f (stringToCharacters s)
|
|
|
|
|
);
|
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Escape occurrence of the elements of ‘list’ in ‘string’ by
|
|
|
|
|
prefixing it with a backslash.
|
2012-03-28 16:43:39 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
|
|
|
|
escape ["(" ")"] "(foo)"
|
|
|
|
|
=> "\\(foo\\)"
|
|
|
|
|
*/
|
2015-07-24 14:45:41 +01:00
|
|
|
|
escape = list: replaceChars list (map (c: "\\${c}") list);
|
2009-05-06 17:06:41 +01:00
|
|
|
|
|
2016-06-20 17:31:49 +01:00
|
|
|
|
/* Quote string to be used safely within the Bourne shell.
|
2012-03-28 16:43:39 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
2016-06-20 17:31:49 +01:00
|
|
|
|
escapeShellArg "esc'ape\nme"
|
|
|
|
|
=> "'esc'\\''ape\nme'"
|
2016-02-28 23:27:35 +00:00
|
|
|
|
*/
|
2016-06-20 17:31:49 +01:00
|
|
|
|
escapeShellArg = arg: "'${replaceStrings ["'"] ["'\\''"] (toString arg)}'";
|
2016-06-12 18:11:37 +01:00
|
|
|
|
|
2016-06-20 17:31:49 +01:00
|
|
|
|
/* Quote all arguments to be safely passed to the Bourne shell.
|
2016-06-12 18:11:37 +01:00
|
|
|
|
|
|
|
|
|
Example:
|
2016-06-20 17:31:49 +01:00
|
|
|
|
escapeShellArgs ["one" "two three" "four'five"]
|
|
|
|
|
=> "'one' 'two three' 'four'\\''five'"
|
2016-06-12 18:11:37 +01:00
|
|
|
|
*/
|
|
|
|
|
escapeShellArgs = concatMapStringsSep " " escapeShellArg;
|
2009-02-09 16:51:03 +00:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Obsolete - use replaceStrings instead. */
|
2015-07-24 14:45:41 +01:00
|
|
|
|
replaceChars = builtins.replaceStrings or (
|
|
|
|
|
del: new: s:
|
2009-10-06 10:21:52 +01:00
|
|
|
|
let
|
2015-07-13 22:46:38 +01:00
|
|
|
|
substList = lib.zipLists del new;
|
2009-10-06 10:21:52 +01:00
|
|
|
|
subst = c:
|
2015-07-13 22:46:38 +01:00
|
|
|
|
let found = lib.findFirst (sub: sub.fst == c) null substList; in
|
|
|
|
|
if found == null then
|
|
|
|
|
c
|
|
|
|
|
else
|
|
|
|
|
found.snd;
|
2009-10-06 10:21:52 +01:00
|
|
|
|
in
|
2015-07-24 14:45:41 +01:00
|
|
|
|
stringAsChars subst s);
|
2009-10-06 10:21:52 +01:00
|
|
|
|
|
2015-07-24 14:45:41 +01:00
|
|
|
|
# Case conversion utilities.
|
2013-02-09 17:38:26 +00:00
|
|
|
|
lowerChars = stringToCharacters "abcdefghijklmnopqrstuvwxyz";
|
|
|
|
|
upperChars = stringToCharacters "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
2016-02-28 23:27:35 +00:00
|
|
|
|
|
|
|
|
|
/* Converts an ASCII string to lower-case.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
toLower "HOME"
|
|
|
|
|
=> "home"
|
|
|
|
|
*/
|
2013-02-09 17:38:26 +00:00
|
|
|
|
toLower = replaceChars upperChars lowerChars;
|
2016-02-28 23:27:35 +00:00
|
|
|
|
|
|
|
|
|
/* Converts an ASCII string to upper-case.
|
|
|
|
|
|
|
|
|
|
Example:
|
2016-08-12 09:30:11 +01:00
|
|
|
|
toUpper "home"
|
2016-02-28 23:27:35 +00:00
|
|
|
|
=> "HOME"
|
|
|
|
|
*/
|
2013-02-09 17:38:26 +00:00
|
|
|
|
toUpper = replaceChars lowerChars upperChars;
|
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Appends string context from another string. This is an implementation
|
|
|
|
|
detail of Nix.
|
2013-02-09 17:38:26 +00:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Strings in Nix carry an invisible `context' which is a list of strings
|
|
|
|
|
representing store paths. If the string is later used in a derivation
|
|
|
|
|
attribute, the derivation will properly populate the inputDrvs and
|
|
|
|
|
inputSrcs.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
pkgs = import <nixpkgs> { };
|
|
|
|
|
addContextFrom pkgs.coreutils "bar"
|
|
|
|
|
=> "bar"
|
|
|
|
|
*/
|
2014-10-04 16:02:29 +01:00
|
|
|
|
addContextFrom = a: b: substring 0 0 a + b;
|
2009-09-28 19:22:37 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Cut a string with a separator and produces a list of strings which
|
|
|
|
|
were separated by this separator.
|
|
|
|
|
|
2016-04-01 12:52:54 +01:00
|
|
|
|
NOTE: this function is not performant and should never be used.
|
2012-03-28 16:43:39 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
|
|
|
|
splitString "." "foo.bar.baz"
|
|
|
|
|
=> [ "foo" "bar" "baz" ]
|
|
|
|
|
splitString "/" "/usr/local/bin"
|
|
|
|
|
=> [ "" "usr" "local" "bin" ]
|
|
|
|
|
*/
|
2014-06-10 10:55:25 +01:00
|
|
|
|
splitString = _sep: _s:
|
2009-09-28 19:22:37 +01:00
|
|
|
|
let
|
2014-06-10 10:55:25 +01:00
|
|
|
|
sep = addContextFrom _s _sep;
|
|
|
|
|
s = addContextFrom _sep _s;
|
2009-09-28 19:22:37 +01:00
|
|
|
|
sepLen = stringLength sep;
|
|
|
|
|
sLen = stringLength s;
|
2014-10-04 16:02:29 +01:00
|
|
|
|
lastSearch = sLen - sepLen;
|
2009-09-28 19:22:37 +01:00
|
|
|
|
startWithSep = startAt:
|
|
|
|
|
substring startAt sepLen s == sep;
|
|
|
|
|
|
|
|
|
|
recurse = index: startAt:
|
2014-10-04 16:02:29 +01:00
|
|
|
|
let cutUntil = i: [(substring startAt (i - startAt) s)]; in
|
2017-03-15 21:16:04 +00:00
|
|
|
|
if index <= lastSearch then
|
2009-09-28 19:22:37 +01:00
|
|
|
|
if startWithSep index then
|
2014-10-04 16:02:29 +01:00
|
|
|
|
let restartAt = index + sepLen; in
|
2009-09-28 19:22:37 +01:00
|
|
|
|
cutUntil index ++ recurse restartAt restartAt
|
|
|
|
|
else
|
2014-10-04 16:02:29 +01:00
|
|
|
|
recurse (index + 1) startAt
|
2009-09-28 19:22:37 +01:00
|
|
|
|
else
|
|
|
|
|
cutUntil sLen;
|
|
|
|
|
in
|
|
|
|
|
recurse 0 0;
|
2009-10-06 10:21:39 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Return the suffix of the second argument if the first argument matches
|
|
|
|
|
its prefix.
|
2012-03-28 16:43:39 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
|
|
|
|
removePrefix "foo." "foo.bar.baz"
|
|
|
|
|
=> "bar.baz"
|
|
|
|
|
removePrefix "xxx" "foo.bar.baz"
|
|
|
|
|
=> "foo.bar.baz"
|
|
|
|
|
*/
|
2009-10-06 10:21:39 +01:00
|
|
|
|
removePrefix = pre: s:
|
|
|
|
|
let
|
|
|
|
|
preLen = stringLength pre;
|
|
|
|
|
sLen = stringLength s;
|
|
|
|
|
in
|
2014-05-08 12:07:02 +01:00
|
|
|
|
if hasPrefix pre s then
|
|
|
|
|
substring preLen (sLen - preLen) s
|
2009-10-06 10:21:39 +01:00
|
|
|
|
else
|
|
|
|
|
s;
|
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Return the prefix of the second argument if the first argument matches
|
|
|
|
|
its suffix.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
removeSuffix "front" "homefront"
|
|
|
|
|
=> "home"
|
|
|
|
|
removeSuffix "xxx" "homefront"
|
|
|
|
|
=> "homefront"
|
|
|
|
|
*/
|
2014-05-09 14:50:40 +01:00
|
|
|
|
removeSuffix = suf: s:
|
|
|
|
|
let
|
|
|
|
|
sufLen = stringLength suf;
|
|
|
|
|
sLen = stringLength s;
|
|
|
|
|
in
|
2015-07-24 14:48:29 +01:00
|
|
|
|
if sufLen <= sLen && suf == substring (sLen - sufLen) sufLen s then
|
2014-05-09 14:50:40 +01:00
|
|
|
|
substring 0 (sLen - sufLen) s
|
|
|
|
|
else
|
|
|
|
|
s;
|
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Return true iff string v1 denotes a version older than v2.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
versionOlder "1.1" "1.2"
|
|
|
|
|
=> true
|
|
|
|
|
versionOlder "1.1" "1.1"
|
|
|
|
|
=> false
|
|
|
|
|
*/
|
2012-03-19 18:04:47 +00:00
|
|
|
|
versionOlder = v1: v2: builtins.compareVersions v2 v1 == 1;
|
|
|
|
|
|
2016-05-18 23:26:04 +01:00
|
|
|
|
/* Return true iff string v1 denotes a version equal to or newer than v2.
|
2012-10-05 18:45:27 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
|
|
|
|
versionAtLeast "1.1" "1.0"
|
|
|
|
|
=> true
|
|
|
|
|
versionAtLeast "1.1" "1.1"
|
|
|
|
|
=> true
|
|
|
|
|
versionAtLeast "1.1" "1.2"
|
|
|
|
|
=> false
|
|
|
|
|
*/
|
2013-07-17 10:14:26 +01:00
|
|
|
|
versionAtLeast = v1: v2: !versionOlder v1 v2;
|
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* This function takes an argument that's either a derivation or a
|
|
|
|
|
derivation's "name" attribute and extracts the version part from that
|
|
|
|
|
argument.
|
2013-07-17 10:14:26 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
|
|
|
|
getVersion "youtube-dl-2016.01.01"
|
|
|
|
|
=> "2016.01.01"
|
|
|
|
|
getVersion pkgs.youtube-dl
|
|
|
|
|
=> "2016.01.01"
|
|
|
|
|
*/
|
2016-08-13 16:16:37 +01:00
|
|
|
|
getVersion = x:
|
|
|
|
|
let
|
|
|
|
|
parse = drv: (builtins.parseDrvName drv).version;
|
|
|
|
|
in if isString x
|
|
|
|
|
then parse x
|
|
|
|
|
else x.version or (parse x.name);
|
2012-10-05 18:45:27 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Extract name with version from URL. Ask for separator which is
|
|
|
|
|
supposed to start extension.
|
2012-10-05 18:45:27 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
|
|
|
|
nameFromURL "https://nixos.org/releases/nix/nix-1.7/nix-1.7-x86_64-linux.tar.bz2" "-"
|
|
|
|
|
=> "nix"
|
|
|
|
|
nameFromURL "https://nixos.org/releases/nix/nix-1.7/nix-1.7-x86_64-linux.tar.bz2" "_"
|
|
|
|
|
=> "nix-1.7-x86"
|
|
|
|
|
*/
|
2015-07-24 14:48:29 +01:00
|
|
|
|
nameFromURL = url: sep:
|
|
|
|
|
let
|
|
|
|
|
components = splitString "/" url;
|
|
|
|
|
filename = lib.last components;
|
|
|
|
|
name = builtins.head (splitString sep filename);
|
|
|
|
|
in assert name != filename; name;
|
2012-09-13 10:59:23 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Create an --{enable,disable}-<feat> string that can be passed to
|
|
|
|
|
standard GNU Autoconf scripts.
|
2013-02-24 18:28:24 +00:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
|
|
|
|
enableFeature true "shared"
|
|
|
|
|
=> "--enable-shared"
|
|
|
|
|
enableFeature false "shared"
|
|
|
|
|
=> "--disable-shared"
|
|
|
|
|
*/
|
2013-02-24 18:28:24 +00:00
|
|
|
|
enableFeature = enable: feat: "--${if enable then "enable" else "disable"}-${feat}";
|
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Create a fixed width string with additional prefix to match
|
|
|
|
|
required width.
|
2015-07-23 16:41:35 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
|
|
|
|
fixedWidthString 5 "0" (toString 15)
|
|
|
|
|
=> "00015"
|
|
|
|
|
*/
|
2015-03-08 17:29:14 +00:00
|
|
|
|
fixedWidthString = width: filler: str:
|
|
|
|
|
let
|
|
|
|
|
strw = lib.stringLength str;
|
|
|
|
|
reqWidth = width - (lib.stringLength filler);
|
|
|
|
|
in
|
|
|
|
|
assert strw <= width;
|
|
|
|
|
if strw == width then str else filler + fixedWidthString reqWidth filler str;
|
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Format a number adding leading zeroes up to fixed width.
|
2015-07-23 16:41:35 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
|
|
|
|
fixedWidthNumber 5 15
|
|
|
|
|
=> "00015"
|
|
|
|
|
*/
|
2015-03-08 17:29:14 +00:00
|
|
|
|
fixedWidthNumber = width: n: fixedWidthString width "0" (toString n);
|
2015-08-06 18:55:42 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Check whether a value is a store path.
|
2015-08-06 18:55:42 +01:00
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
Example:
|
|
|
|
|
isStorePath "/nix/store/d945ibfx9x185xf04b890y4f9g3cbb63-python-2.7.11/bin/python"
|
|
|
|
|
=> false
|
|
|
|
|
isStorePath "/nix/store/d945ibfx9x185xf04b890y4f9g3cbb63-python-2.7.11/"
|
|
|
|
|
=> true
|
|
|
|
|
isStorePath pkgs.python
|
|
|
|
|
=> true
|
|
|
|
|
*/
|
2015-08-06 18:55:42 +01:00
|
|
|
|
isStorePath = x: builtins.substring 0 1 (toString x) == "/" && dirOf (builtins.toPath x) == builtins.storeDir;
|
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Convert string to int
|
|
|
|
|
Obviously, it is a bit hacky to use fromJSON that way.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
toInt "1337"
|
|
|
|
|
=> 1337
|
|
|
|
|
toInt "-4"
|
|
|
|
|
=> -4
|
|
|
|
|
toInt "3.14"
|
|
|
|
|
=> error: floating point JSON numbers are not supported
|
|
|
|
|
*/
|
2015-11-24 09:00:44 +00:00
|
|
|
|
toInt = str:
|
|
|
|
|
let may_be_int = builtins.fromJSON str; in
|
|
|
|
|
if builtins.isInt may_be_int
|
|
|
|
|
then may_be_int
|
|
|
|
|
else throw "Could not convert ${str} to int.";
|
|
|
|
|
|
2016-02-28 23:27:35 +00:00
|
|
|
|
/* Read a list of paths from `file', relative to the `rootPath'. Lines
|
|
|
|
|
beginning with `#' are treated as comments and ignored. Whitespace
|
|
|
|
|
is significant.
|
|
|
|
|
|
|
|
|
|
NOTE: this function is not performant and should be avoided
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
readPathsFromFile /prefix
|
|
|
|
|
./pkgs/development/libraries/qt-5/5.4/qtbase/series
|
|
|
|
|
=> [ "/prefix/dlopen-resolv.patch" "/prefix/tzdir.patch"
|
|
|
|
|
"/prefix/dlopen-libXcursor.patch" "/prefix/dlopen-openssl.patch"
|
|
|
|
|
"/prefix/dlopen-dbus.patch" "/prefix/xdg-config-dirs.patch"
|
|
|
|
|
"/prefix/nix-profiles-library-paths.patch"
|
|
|
|
|
"/prefix/compose-search-path.patch" ]
|
|
|
|
|
*/
|
2015-12-13 01:33:02 +00:00
|
|
|
|
readPathsFromFile = rootPath: file:
|
|
|
|
|
let
|
|
|
|
|
root = toString rootPath;
|
2017-03-19 13:51:04 +00:00
|
|
|
|
lines = lib.splitString "\n" (builtins.readFile file);
|
2017-03-19 09:16:44 +00:00
|
|
|
|
removeComments = lib.filter (line: line != "" && !(lib.hasPrefix "#" line));
|
2015-12-13 01:33:02 +00:00
|
|
|
|
relativePaths = removeComments lines;
|
|
|
|
|
absolutePaths = builtins.map (path: builtins.toPath (root + "/" + path)) relativePaths;
|
|
|
|
|
in
|
|
|
|
|
absolutePaths;
|
2016-07-29 09:15:37 +01:00
|
|
|
|
|
|
|
|
|
/* Read the contents of a file removing the trailing \n
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
$ echo "1.0" > ./version
|
|
|
|
|
|
|
|
|
|
fileContents ./version
|
|
|
|
|
=> "1.0"
|
|
|
|
|
*/
|
|
|
|
|
fileContents = file: removeSuffix "\n" (builtins.readFile file);
|
2009-02-24 16:19:08 +00:00
|
|
|
|
}
|