summary refs log tree commit diff
path: root/lib/attrsets.nix
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2016-02-29 20:20:31 +0000
committerzimbatm <zimbatm@zimbatm.com>2016-03-09 19:59:57 +0000
commita086858ef51eb564a378424b21f677428a34fc9e (patch)
tree7511c43e4064c1b542941cd1d72bbb25542230bb /lib/attrsets.nix
parenta75eb513c653b5fd70700607c89bb40ca5febb83 (diff)
downloadnixpkgs-a086858ef51eb564a378424b21f677428a34fc9e.tar
nixpkgs-a086858ef51eb564a378424b21f677428a34fc9e.tar.gz
nixpkgs-a086858ef51eb564a378424b21f677428a34fc9e.tar.bz2
nixpkgs-a086858ef51eb564a378424b21f677428a34fc9e.tar.lz
nixpkgs-a086858ef51eb564a378424b21f677428a34fc9e.tar.xz
nixpkgs-a086858ef51eb564a378424b21f677428a34fc9e.tar.zst
nixpkgs-a086858ef51eb564a378424b21f677428a34fc9e.zip
Remove lib.deepSeqList and lib.deepSeqAttrs
Both functions are broken and unused in the repo.
Diffstat (limited to 'lib/attrsets.nix')
-rw-r--r--lib/attrsets.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/attrsets.nix b/lib/attrsets.nix
index 84f6cb3658b..f5184af4230 100644
--- a/lib/attrsets.nix
+++ b/lib/attrsets.nix
@@ -364,5 +364,5 @@ rec {
   overrideExisting = old: new:
     old // listToAttrs (map (attr: nameValuePair attr (attrByPath [attr] old.${attr} new)) (attrNames old));
 
-  deepSeqAttrs = x: y: deepSeqList (attrValues x) y;
+  deepSeqAttrs = throw "removed 2016-02-29 because unused and broken";
 }