about summary refs log tree commit diff
path: root/pkgs/test/mkOption/merge.nix
diff options
context:
space:
mode:
authorSilvan Mosberger <contact@infinisil.com>2022-03-18 21:23:40 +0100
committerSilvan Mosberger <contact@infinisil.com>2022-03-18 21:23:54 +0100
commit7b32b8b66f80c10e7d509d62051dfd64470b3ebb (patch)
treeac36fddbc24487ff66b93a19c1c94a006bda50d4 /pkgs/test/mkOption/merge.nix
parent96698efe0cd9e0ffe38d95e043acafa926fa5e0d (diff)
downloadnixlib-7b32b8b66f80c10e7d509d62051dfd64470b3ebb.tar
nixlib-7b32b8b66f80c10e7d509d62051dfd64470b3ebb.tar.gz
nixlib-7b32b8b66f80c10e7d509d62051dfd64470b3ebb.tar.bz2
nixlib-7b32b8b66f80c10e7d509d62051dfd64470b3ebb.tar.lz
nixlib-7b32b8b66f80c10e7d509d62051dfd64470b3ebb.tar.xz
nixlib-7b32b8b66f80c10e7d509d62051dfd64470b3ebb.tar.zst
nixlib-7b32b8b66f80c10e7d509d62051dfd64470b3ebb.zip
Remove ancient mkOption tests
These are completely non-functional by now
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 ]