diff --git a/LICENSE b/LICENSE
new file mode 100644
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,11 @@
+Copyright Vanessa McHale (c) 2019
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/archive-tar.cabal b/archive-tar.cabal
new file mode 100644
--- /dev/null
+++ b/archive-tar.cabal
@@ -0,0 +1,45 @@
+cabal-version: 2.0
+name: archive-tar
+version: 0.1.0.0
+license: BSD3
+license-file: LICENSE
+copyright: Copyright: (c) 2019 Vanessa McHale
+maintainer: vanessa.mchale@iohk.io
+author: Vanessa McHale
+synopsis: Common interface using the tar package
+description:
+    Backpack-ified way to use [tar](http://hackage.haskell.org/package/tar) bindings
+category: Codec, Tar, Archive
+build-type: Simple
+
+source-repository head
+    type: git
+    location: https://github.com/vmchale/archive-backpack
+
+flag development
+    description:
+        Enable `-Werror`
+    default: False
+    manual: True
+
+library
+    exposed-modules:
+        Archive.Tar
+    hs-source-dirs: src
+    default-language: Haskell2010
+    ghc-options: -Wall
+    build-depends:
+        base >=4.3 && <5,
+        tar -any,
+        bytestring -any,
+        composition-prelude >=2.0.3.0
+
+    if flag(development)
+        ghc-options: -Werror
+
+    if impl(ghc >=8.0)
+        ghc-options: -Wincomplete-uni-patterns -Wincomplete-record-updates
+                     -Wredundant-constraints -Widentities
+
+    if impl(ghc >=8.4)
+        ghc-options: -Wmissing-export-lists
diff --git a/src/Archive/Tar.hs b/src/Archive/Tar.hs
new file mode 100644
--- /dev/null
+++ b/src/Archive/Tar.hs
@@ -0,0 +1,34 @@
+module Archive.Tar ( Entry
+                   , Error
+                   , writeArchiveBytes
+                   , unpackToDir
+                   , readArchiveBytes
+                   , packFromFiles
+                   ) where
+
+import           Codec.Archive.Tar    (Entries (..))
+import qualified Codec.Archive.Tar    as Tar
+import           Control.Composition  ((.@))
+import qualified Data.ByteString.Lazy as BSL
+
+type Entry = Tar.Entry
+
+type Error = Tar.FormatError
+
+-- this is bad but libarchive's error handling is vaguely fucked
+coerceToList :: Entries a -> Either a [Entry]
+coerceToList (Next e es) = (e :) <$> coerceToList es
+coerceToList Done        = Right []
+coerceToList (Fail ex)   = Left ex
+
+writeArchiveBytes :: [Entry] -> BSL.ByteString
+writeArchiveBytes = Tar.write
+
+readArchiveBytes :: BSL.ByteString -> Either Error [Entry]
+readArchiveBytes = coerceToList . Tar.read
+
+unpackToDir :: FilePath -> BSL.ByteString -> IO ()
+unpackToDir = Tar.read .@ Tar.unpack
+
+packFromFiles :: FilePath -> [FilePath] -> IO ()
+packFromFiles arc = Tar.create arc "."
