2017-07-29 02:05:35 +02:00
|
|
|
{ lib }:
|
2018-07-26 00:10:53 +02:00
|
|
|
|
2009-02-09 17:51:03 +01:00
|
|
|
rec {
|
|
|
|
|
2018-07-26 00:03:51 +02:00
|
|
|
## Simple (higher order) functions
|
|
|
|
|
2017-03-15 18:29:33 +01:00
|
|
|
/* The identity function
|
|
|
|
For when you need a function that does “nothing”.
|
|
|
|
|
|
|
|
Type: id :: a -> a
|
|
|
|
*/
|
2009-02-09 17:51:03 +01:00
|
|
|
id = x: x;
|
|
|
|
|
2017-03-15 18:29:33 +01:00
|
|
|
/* The constant function
|
|
|
|
Ignores the second argument.
|
|
|
|
Or: Construct a function that always returns a static value.
|
|
|
|
|
|
|
|
Type: const :: a -> b -> a
|
|
|
|
Example:
|
|
|
|
let f = const 5; in f 10
|
|
|
|
=> 5
|
|
|
|
*/
|
2009-02-09 17:51:03 +01:00
|
|
|
const = x: y: x;
|
|
|
|
|
2017-03-15 18:29:33 +01:00
|
|
|
|
|
|
|
## Named versions corresponding to some builtin operators.
|
|
|
|
|
2018-07-26 00:03:51 +02:00
|
|
|
/* Concatenate two lists */
|
2009-02-09 17:51:03 +01:00
|
|
|
concat = x: y: x ++ y;
|
2017-03-15 18:29:33 +01:00
|
|
|
|
|
|
|
/* boolean “or” */
|
2009-02-09 17:51:03 +01:00
|
|
|
or = x: y: x || y;
|
2017-03-15 18:29:33 +01:00
|
|
|
|
|
|
|
/* boolean “and” */
|
2009-02-09 17:51:03 +01:00
|
|
|
and = x: y: x && y;
|
2017-03-15 18:29:33 +01:00
|
|
|
|
2018-06-10 21:25:48 +02:00
|
|
|
/* bitwise “and” */
|
2018-07-26 00:10:53 +02:00
|
|
|
bitAnd = builtins.bitAnd
|
2018-09-03 14:10:54 +02:00
|
|
|
or (import ./zip-int-bits.nix
|
|
|
|
(a: b: if a==1 && b==1 then 1 else 0));
|
2018-06-10 21:25:48 +02:00
|
|
|
|
|
|
|
/* bitwise “or” */
|
2018-07-26 00:10:53 +02:00
|
|
|
bitOr = builtins.bitOr
|
2018-09-03 14:10:54 +02:00
|
|
|
or (import ./zip-int-bits.nix
|
|
|
|
(a: b: if a==1 || b==1 then 1 else 0));
|
2018-06-10 21:25:48 +02:00
|
|
|
|
|
|
|
/* bitwise “xor” */
|
2018-07-26 00:10:53 +02:00
|
|
|
bitXor = builtins.bitXor
|
2018-09-03 14:10:54 +02:00
|
|
|
or (import ./zip-int-bits.nix
|
|
|
|
(a: b: if a!=b then 1 else 0));
|
2018-06-10 21:25:48 +02:00
|
|
|
|
|
|
|
/* bitwise “not” */
|
|
|
|
bitNot = builtins.sub (-1);
|
|
|
|
|
2017-04-11 18:08:51 +02:00
|
|
|
/* Convert a boolean to a string.
|
|
|
|
Note that toString on a bool returns "1" and "".
|
|
|
|
*/
|
|
|
|
boolToString = b: if b then "true" else "false";
|
|
|
|
|
2017-03-15 18:29:33 +01:00
|
|
|
/* Merge two attribute sets shallowly, right side trumps left
|
|
|
|
|
|
|
|
Example:
|
2017-04-25 08:36:22 +02:00
|
|
|
mergeAttrs { a = 1; b = 2; } { b = 3; c = 4; }
|
2017-03-15 18:29:33 +01:00
|
|
|
=> { a = 1; b = 3; c = 4; }
|
|
|
|
*/
|
2009-07-02 10:58:30 +02:00
|
|
|
mergeAttrs = x: y: x // y;
|
2013-11-12 13:48:19 +01:00
|
|
|
|
2018-07-26 00:03:51 +02:00
|
|
|
/* Flip the order of the arguments of a binary function.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
flip concat [1] [2]
|
|
|
|
=> [ 2 1 ]
|
|
|
|
*/
|
2009-10-23 09:34:56 +02:00
|
|
|
flip = f: a: b: f b a;
|
|
|
|
|
2018-07-26 00:03:51 +02:00
|
|
|
/* Apply function if argument is non-null.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
mapNullable (x: x+1) null
|
|
|
|
=> null
|
|
|
|
mapNullable (x: x+1) 22
|
|
|
|
=> 23
|
|
|
|
*/
|
2017-04-17 22:48:10 +02:00
|
|
|
mapNullable = f: a: if isNull a then a else f a;
|
|
|
|
|
2013-11-12 13:48:19 +01:00
|
|
|
# Pull in some builtins not included elsewhere.
|
|
|
|
inherit (builtins)
|
2018-01-31 20:02:19 +01:00
|
|
|
pathExists readFile isBool
|
2018-06-30 21:13:49 +02:00
|
|
|
isInt isFloat add sub lessThan
|
2015-07-23 17:41:35 +02:00
|
|
|
seq deepSeq genericClosure;
|
2013-11-12 13:48:19 +01:00
|
|
|
|
2016-07-31 14:59:30 +02:00
|
|
|
|
2018-07-26 00:03:51 +02:00
|
|
|
## nixpks version strings
|
2018-04-24 20:33:35 +02:00
|
|
|
|
2018-07-26 00:03:51 +02:00
|
|
|
# The current full nixpkgs version number.
|
2018-04-26 10:31:05 +02:00
|
|
|
version = release + versionSuffix;
|
|
|
|
|
2018-07-26 00:03:51 +02:00
|
|
|
# The current nixpkgs version number as string.
|
|
|
|
release = lib.strings.fileContents ../.version;
|
|
|
|
|
|
|
|
# The current nixpkgs version suffix as string.
|
|
|
|
versionSuffix =
|
|
|
|
let suffixFile = ../.version-suffix;
|
|
|
|
in if pathExists suffixFile
|
|
|
|
then lib.strings.fileContents suffixFile
|
|
|
|
else "pre-git";
|
|
|
|
|
2018-04-26 10:31:05 +02:00
|
|
|
nixpkgsVersion = builtins.trace "`lib.nixpkgsVersion` is deprecated, use `lib.version` instead!" version;
|
2014-02-19 18:47:48 +01:00
|
|
|
|
2015-02-16 11:57:36 +01:00
|
|
|
# Whether we're being called by nix-shell.
|
2016-08-11 16:35:06 +02:00
|
|
|
inNixShell = builtins.getEnv "IN_NIX_SHELL" != "";
|
2014-02-19 19:00:51 +01:00
|
|
|
|
2018-07-26 00:03:51 +02:00
|
|
|
|
|
|
|
## Integer operations
|
|
|
|
|
2015-02-16 11:57:36 +01:00
|
|
|
# Return minimum/maximum of two numbers.
|
|
|
|
min = x: y: if x < y then x else y;
|
|
|
|
max = x: y: if x > y then x else y;
|
|
|
|
|
2017-08-30 14:32:04 +02:00
|
|
|
/* Integer modulus
|
|
|
|
|
|
|
|
Example:
|
|
|
|
mod 11 10
|
|
|
|
=> 1
|
|
|
|
mod 1 10
|
|
|
|
=> 1
|
|
|
|
*/
|
|
|
|
mod = base: int: base - (int * (builtins.div base int));
|
|
|
|
|
2018-07-26 00:03:51 +02:00
|
|
|
|
|
|
|
## Comparisons
|
|
|
|
|
2017-12-07 22:26:30 +01:00
|
|
|
/* C-style comparisons
|
|
|
|
|
|
|
|
a < b, compare a b => -1
|
|
|
|
a == b, compare a b => 0
|
|
|
|
a > b, compare a b => 1
|
|
|
|
*/
|
|
|
|
compare = a: b:
|
|
|
|
if a < b
|
|
|
|
then -1
|
|
|
|
else if a > b
|
|
|
|
then 1
|
|
|
|
else 0;
|
|
|
|
|
|
|
|
/* Split type into two subtypes by predicate `p`, take all elements
|
|
|
|
of the first subtype to be less than all the elements of the
|
|
|
|
second subtype, compare elements of a single subtype with `yes`
|
|
|
|
and `no` respectively.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
let cmp = splitByAndCompare (hasPrefix "foo") compare compare; in
|
|
|
|
|
|
|
|
cmp "a" "z" => -1
|
|
|
|
cmp "fooa" "fooz" => -1
|
|
|
|
|
|
|
|
cmp "f" "a" => 1
|
|
|
|
cmp "fooa" "a" => -1
|
|
|
|
# while
|
|
|
|
compare "fooa" "a" => 1
|
|
|
|
*/
|
|
|
|
splitByAndCompare = p: yes: no: a: b:
|
|
|
|
if p a
|
|
|
|
then if p b then yes a b else -1
|
|
|
|
else if p b then 1 else no a b;
|
|
|
|
|
2018-07-26 00:03:51 +02:00
|
|
|
|
2017-01-30 11:18:56 +01:00
|
|
|
/* Reads a JSON file. */
|
2016-02-28 17:35:27 +01:00
|
|
|
importJSON = path:
|
|
|
|
builtins.fromJSON (builtins.readFile path);
|
2016-08-15 19:54:23 +02:00
|
|
|
|
2018-07-26 00:03:51 +02:00
|
|
|
|
|
|
|
## Warnings and asserts
|
|
|
|
|
2016-08-15 19:54:23 +02:00
|
|
|
/* See https://github.com/NixOS/nix/issues/749. Eventually we'd like these
|
|
|
|
to expand to Nix builtins that carry metadata so that Nix can filter out
|
|
|
|
the INFO messages without parsing the message string.
|
|
|
|
|
|
|
|
Usage:
|
|
|
|
{
|
|
|
|
foo = lib.warn "foo is deprecated" oldFoo;
|
|
|
|
}
|
|
|
|
|
|
|
|
TODO: figure out a clever way to integrate location information from
|
|
|
|
something like __unsafeGetAttrPos.
|
|
|
|
*/
|
|
|
|
warn = msg: builtins.trace "WARNING: ${msg}";
|
|
|
|
info = msg: builtins.trace "INFO: ${msg}";
|
2018-01-31 20:02:19 +01:00
|
|
|
|
2018-07-26 20:45:55 +02:00
|
|
|
/* Print a trace message if pred is false.
|
|
|
|
Intended to be used to augment asserts with helpful error messages.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
assertMsg false "nope"
|
|
|
|
=> false
|
|
|
|
stderr> trace: nope
|
|
|
|
|
|
|
|
assert (assertMsg ("foo" == "bar") "foo is not bar, silly"); ""
|
|
|
|
stderr> trace: foo is not bar, silly
|
|
|
|
stderr> assert failed at …
|
|
|
|
|
|
|
|
Type:
|
|
|
|
assertMsg :: Bool -> String -> Bool
|
|
|
|
*/
|
2018-08-06 01:35:48 +02:00
|
|
|
# TODO(Profpatsch): add tests that check stderr
|
2018-07-26 20:45:55 +02:00
|
|
|
assertMsg = pred: msg:
|
|
|
|
if pred
|
|
|
|
then true
|
|
|
|
else builtins.trace msg false;
|
|
|
|
|
2018-08-06 01:35:48 +02:00
|
|
|
/* Specialized `assertMsg` for checking if val is one of the elements
|
|
|
|
of a list. Useful for checking enums.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
let sslLibrary = "libressl"
|
|
|
|
in assertOneOf "sslLibrary" sslLibrary [ "openssl" "bearssl" ]
|
|
|
|
=> false
|
|
|
|
stderr> trace: sslLibrary must be one of "openssl", "bearssl", but is: "libressl"
|
|
|
|
|
|
|
|
Type:
|
|
|
|
assertOneOf :: String -> ComparableVal -> List ComparableVal -> Bool
|
|
|
|
*/
|
|
|
|
assertOneOf = name: val: xs: assertMsg
|
|
|
|
(lib.elem val xs)
|
|
|
|
"${name} must be one of ${
|
|
|
|
lib.generators.toPretty {} xs}, but is: ${
|
|
|
|
lib.generators.toPretty {} val}";
|
2018-07-26 00:03:51 +02:00
|
|
|
|
|
|
|
## Function annotations
|
|
|
|
|
|
|
|
/* Add metadata about expected function arguments to a function.
|
|
|
|
The metadata should match the format given by
|
|
|
|
builtins.functionArgs, i.e. a set from expected argument to a bool
|
|
|
|
representing whether that argument has a default or not.
|
|
|
|
setFunctionArgs : (a → b) → Map String Bool → (a → b)
|
|
|
|
|
|
|
|
This function is necessary because you can't dynamically create a
|
|
|
|
function of the { a, b ? foo, ... }: format, but some facilities
|
|
|
|
like callPackage expect to be able to query expected arguments.
|
|
|
|
*/
|
2018-01-31 20:02:19 +01:00
|
|
|
setFunctionArgs = f: args:
|
|
|
|
{ # TODO: Should we add call-time "type" checking like built in?
|
|
|
|
__functor = self: f;
|
|
|
|
__functionArgs = args;
|
|
|
|
};
|
|
|
|
|
2018-07-26 00:03:51 +02:00
|
|
|
/* Extract the expected function arguments from a function.
|
|
|
|
This works both with nix-native { a, b ? foo, ... }: style
|
|
|
|
functions and functions with args set with 'setFunctionArgs'. It
|
|
|
|
has the same return type and semantics as builtins.functionArgs.
|
|
|
|
setFunctionArgs : (a → b) → Map String Bool.
|
|
|
|
*/
|
2018-01-31 20:02:19 +01:00
|
|
|
functionArgs = f: f.__functionArgs or (builtins.functionArgs f);
|
|
|
|
|
2018-07-26 00:03:51 +02:00
|
|
|
/* Check whether something is a function or something
|
|
|
|
annotated with function args.
|
|
|
|
*/
|
2018-01-31 20:02:19 +01:00
|
|
|
isFunction = f: builtins.isFunction f ||
|
|
|
|
(f ? __functor && isFunction (f.__functor f));
|
2009-02-09 17:51:03 +01:00
|
|
|
}
|