diff --git a/LICENSE b/LICENSE
new file mode 100644
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,30 @@
+Copyright (c) 2013-2014, Ranjit Jhala
+
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+    * Redistributions of source code must retain the above copyright
+      notice, this list of conditions and the following disclaimer.
+
+    * 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.
+
+    * Neither the name of Ranjit Jhala nor the names of other
+      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
+OWNER 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/Setup.hs b/Setup.hs
new file mode 100644
--- /dev/null
+++ b/Setup.hs
@@ -0,0 +1,6 @@
+module Main where
+
+import Language.Haskell.Liquid.Cabal (liquidHaskellMain)
+
+main :: IO ()
+main = liquidHaskellMain
diff --git a/liquid-parallel.cabal b/liquid-parallel.cabal
new file mode 100644
--- /dev/null
+++ b/liquid-parallel.cabal
@@ -0,0 +1,31 @@
+cabal-version:      1.24
+name:               liquid-parallel
+version:            3.2.2.0
+synopsis:           LiquidHaskell specs for the parallel package
+description:        LiquidHaskell specs for the parallel package.
+license:            BSD3
+license-file:       LICENSE
+copyright:          2010-19 Ranjit Jhala & Niki Vazou & Eric L. Seidel, University of California, San Diego.
+author:             Ranjit Jhala, Niki Vazou, Eric Seidel
+maintainer:         Ranjit Jhala <jhala@cs.ucsd.edu>
+category:           Language
+homepage:           https://github.com/ucsd-progsys/liquidhaskell
+build-type:         Custom
+
+data-files:           src/Control/Parallel/Strategies.spec
+
+custom-setup
+  setup-depends: Cabal, base, liquidhaskell
+
+library
+  exposed-modules:    Control.Seq
+                      Control.Parallel
+                      Control.Parallel.Strategies
+  hs-source-dirs:     src
+  build-depends:      liquid-base          < 4.15
+                    , parallel             >= 3.2.0.0 && < 3.3
+                    , liquidhaskell        >= 0.8.10.1
+  default-language:   Haskell2010
+  default-extensions: PackageImports
+  if impl(ghc >= 8.10)
+    ghc-options: -fplugin=LiquidHaskell
diff --git a/src/Control/Parallel.hs b/src/Control/Parallel.hs
new file mode 100644
--- /dev/null
+++ b/src/Control/Parallel.hs
@@ -0,0 +1,3 @@
+module Control.Parallel (module Exports) where
+
+import "parallel" Control.Parallel as Exports
diff --git a/src/Control/Parallel/Strategies.hs b/src/Control/Parallel/Strategies.hs
new file mode 100644
--- /dev/null
+++ b/src/Control/Parallel/Strategies.hs
@@ -0,0 +1,3 @@
+module Control.Parallel.Strategies ( module Exports ) where
+
+import "parallel" Control.Parallel.Strategies as Exports
diff --git a/src/Control/Parallel/Strategies.spec b/src/Control/Parallel/Strategies.spec
new file mode 100644
--- /dev/null
+++ b/src/Control/Parallel/Strategies.spec
@@ -0,0 +1,3 @@
+module spec Control.Parallel.Strategies where
+
+assume withStrategy :: Control.Parallel.Strategies.Strategy a -> x:a -> {v:a | v == x}
diff --git a/src/Control/Seq.hs b/src/Control/Seq.hs
new file mode 100644
--- /dev/null
+++ b/src/Control/Seq.hs
@@ -0,0 +1,3 @@
+module Control.Seq (module Exports) where
+
+import "parallel" Control.Seq as Exports
