summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-03-26 11:18:29 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-03-26 11:58:59 +0100
commit79eda8573e15224fb397d48793c6dfa72e268420 (patch)
tree3bfb5713fa76aec5fa8a918dda4686e2728516ae
parentcffc126e140eea1a0bc01a1419c5609c619f5326 (diff)
downloadnixpkgs-79eda8573e15224fb397d48793c6dfa72e268420.tar
nixpkgs-79eda8573e15224fb397d48793c6dfa72e268420.tar.gz
nixpkgs-79eda8573e15224fb397d48793c6dfa72e268420.tar.bz2
nixpkgs-79eda8573e15224fb397d48793c6dfa72e268420.tar.lz
nixpkgs-79eda8573e15224fb397d48793c6dfa72e268420.tar.xz
nixpkgs-79eda8573e15224fb397d48793c6dfa72e268420.tar.zst
nixpkgs-79eda8573e15224fb397d48793c6dfa72e268420.zip
Remove broken ‘removeList’ function
-rw-r--r--pkgs/lib/lists.nix4
1 files changed, 0 insertions, 4 deletions
diff --git a/pkgs/lib/lists.nix b/pkgs/lib/lists.nix
index 0916355568c..3c01b165fc1 100644
--- a/pkgs/lib/lists.nix
+++ b/pkgs/lib/lists.nix
@@ -92,10 +92,6 @@ rec {
   remove = e: filter (x: x != e);
 
   
-  # Given two lists, removes all elements of the first list from the second list
-  removeList = l: filter (x: elem x l);
-
-
   # Return true if `list' has an element `x'.
   elem =
     builtins.elem or