about summary refs log tree commit diff
path: root/pkgs/test/mkOption/merge.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/test/mkOption/merge.nix')
-rw-r--r--pkgs/test/mkOption/merge.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/pkgs/test/mkOption/merge.nix b/pkgs/test/mkOption/merge.nix
deleted file mode 100644
index bbf68218aa09..000000000000
--- a/pkgs/test/mkOption/merge.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-let
-  pkgs = import ../../.. {};
-  config = import ./declare.nix;
-
-  # Define the handler of unbound options.
-  noOption = name: values:
-    builtins.trace "Attribute named '${name}' does not match any option declaration." values;
-in
-  with (pkgs.lib);
-
-  finalReferenceOptionSets
-    (mergeOptionSets noOption)
-    pkgs
-    # List of main configurations.
-    [ config.configB config.configC ]