temporarily blacklist attrpaths starting with lua

This commit is contained in:
Ryan Mulligan 2018-03-21 20:53:40 -07:00
parent e78e486036
commit 0af8879980

8
up.sh
View File

@ -68,6 +68,14 @@ then
error_exit "Packages from gnome are currently blacklisted." error_exit "Packages from gnome are currently blacklisted."
fi fi
# Temporarily blacklist lua packages at @teto's request
# https://github.com/NixOS/nixpkgs/pull/37501#issuecomment-375169646
if echo "$ATTR_PATH" | grep "^lua"
then
error_exit "Packages for lua are currently blacklisted."
fi
DERIVATION_FILE=$(EDITOR="echo" nix edit "$ATTR_PATH" -f .) || error_exit "Couldn't find derivation file." DERIVATION_FILE=$(EDITOR="echo" nix edit "$ATTR_PATH" -f .) || error_exit "Couldn't find derivation file."
function error_cleanup { function error_cleanup {