diff --git a/fsutils.cabal b/fsutils.cabal
--- a/fsutils.cabal
+++ b/fsutils.cabal
@@ -2,9 +2,10 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                fsutils
-version:             0.1.1
+version:             0.1.2
 synopsis:            File system utilities for Haskell that are missing from built in libraries.
--- description:         
+description:         A collection of file system utilities such as recursive walks and file listings
+                     that I couldn't find nice solutions for elsewhere.
 homepage:            https://github.com/Raynes/fsutils
 license:             MIT
 license-file:        LICENSE
@@ -21,3 +22,7 @@
   -- other-modules:       
   build-depends:    base >= 4.5 && < 4.7,
                     filepath ==1.3.0.*, directory >=1.1.0 && < 1.3
+
+source-repository head
+  type:     git
+  location: https://github.com/Raynes/fsutils
diff --git a/src/System/Path.hs b/src/System/Path.hs
--- a/src/System/Path.hs
+++ b/src/System/Path.hs
@@ -14,6 +14,7 @@
        , subDirs
        , files
        , createDir
+       , filterUseless
        ) where
                      
 import Control.Monad (liftM, filterM, forM_, mapM_)
