also adds `mergeListsToAttrs`, which takes two lists and combines them into key-value pairs as an attrset
33 lines
1.1 KiB
Nix
33 lines
1.1 KiB
Nix
{
|
|
description = "A flake that provides a set of useful helper functions";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
|
};
|
|
|
|
outputs = { self, nixpkgs }: rec {
|
|
mkIfElse = with nixpkgs.lib; p: yes: no: mkMerge [
|
|
(mkIf p yes)
|
|
(mkIf (!p) no)
|
|
];
|
|
|
|
mkSymlinkActivationScript = {target, source, isDir ? false}: ''
|
|
if [ -e ${target} ]; then
|
|
rm${if isDir then " -rf" else ""} ${target}
|
|
fi
|
|
ln -s ${source} ${target}
|
|
'';
|
|
|
|
attrByStrPath = strPath: set: nixpkgs.lib.attrByPath (nixpkgs.lib.strings.splitString "." strPath) null set;
|
|
|
|
setAttrByStrPath = strPath: value: nixpkgs.lib.setAttrByPath (nixpkgs.lib.strings.splitString "." strPath) value;
|
|
|
|
homeFilesFromStringAttrs = { dir, attrs, exec ? false }: mergeListsToAttrs (map (x: "${dir}/${x}") (builtins.attrNames attrs)) (map (x: {
|
|
text = x;
|
|
executable = exec;
|
|
}) (builtins.attrValues attrs));
|
|
|
|
mergeListsToAttrs = names: values: nixpkgs.lib.listToAttrs (nixpkgs.lib.zipListsWith (name: value: { inherit name value; }) names values);
|
|
};
|
|
}
|