diff --git a/handsy.cabal b/handsy.cabal
--- a/handsy.cabal
+++ b/handsy.cabal
@@ -1,5 +1,5 @@
 name:          handsy
-version:       0.0.12
+version:       0.0.13
 synopsis:      A DSL to describe common shell operations and interpeters for running them locally and remotely.
 description:
     @handsy@ is a small library mainly for applications which should make some
@@ -35,7 +35,6 @@
                     System.Handsy.Tutorial
   build-depends:    base >=4.6 && <4.8
                   , bytestring
-                  , process
                   , transformers
                   , operational
                   , process-extras
diff --git a/src/System/Handsy/Remote.hs b/src/System/Handsy/Remote.hs
--- a/src/System/Handsy/Remote.hs
+++ b/src/System/Handsy/Remote.hs
@@ -11,6 +11,9 @@
   -- * Helpers
   , pushFile
   , pullFile
+
+  -- * Re-exports
+  , def
   ) where
 
 import           Prelude                hiding (appendFile, readFile, writeFile)
@@ -99,6 +102,3 @@
          -> FilePath -- ^ Local path of destination
          -> Handsy ()
 pullFile remote local = readFile remote >>= liftIO . B.writeFile local
-
-pushFileIfDifferent :: FilePath -> FilePath -> Handsy ()
-pushFileIfDifferent local remote = 
diff --git a/src/System/Handsy/Util.hs b/src/System/Handsy/Util.hs
--- a/src/System/Handsy/Util.hs
+++ b/src/System/Handsy/Util.hs
@@ -80,6 +80,3 @@
     _             -> Nothing
   where parseOsRelease = fmap (filter $ not . flip elem "'\"") -- Hack to unquote
           <$> lookup "ID" . map ((\(x:xs) -> (x, concat xs)) . splitOn "=") . strLines
-
-cksum :: FilePath -> Handsy (Maybe (Int, Int))
-cksum fp = command_ "cksum" [fp] def >>= return . Just . (\[i, j] -> (i, j)) . map read . take 2 . words . head . strLines . stdout
