diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,7 @@
+0.7.2
+-----
+* Build/tested with GHC 7.8.3
+
 0.7.1
 -----
 * Raise upper bounds of dependencies
diff --git a/cabal-cargs.cabal b/cabal-cargs.cabal
--- a/cabal-cargs.cabal
+++ b/cabal-cargs.cabal
@@ -1,5 +1,5 @@
 name: cabal-cargs
-version: 0.7.1
+version: 0.7.2
 cabal-version: >=1.9.2
 build-type: Simple
 license: BSD3
@@ -8,8 +8,9 @@
 synopsis: A command line program for extracting compiler arguments from a cabal file.
 description:
     For further details please consult the <https://github.com/dan-t/cabal-cargs README>.
-category: Utils
+category: Utils, Development
 author: Daniel Trstenjak
+tested-with: GHC ==7.6.2 GHC ==7.6.3 GHC ==7.8.3
 extra-source-files:
     README.md
     CHANGELOG
@@ -47,7 +48,7 @@
         system-filepath >=0.4.9 && <0.5,
         system-fileio >=0.3.12 && <0.4,
         unordered-containers >=0.2.3.3 && <0.3,
-        cabal-lenses >=0.1 && <0.4,
+        cabal-lenses ==0.4.*,
         Cabal >=1.16 && <1.21
     exposed-modules:
         CabalCargs.Args
diff --git a/lib/CabalCargs/CompilerArgs.hs b/lib/CabalCargs/CompilerArgs.hs
--- a/lib/CabalCargs/CompilerArgs.hs
+++ b/lib/CabalCargs/CompilerArgs.hs
@@ -133,7 +133,7 @@
                where
                   buildInfoFields = concatMap (^. B.field field) buildInfos
 
-            dependencies = pkgDescrp ^.. CL.dependencyIf condVars section . CL.depPackageName . CL.pkgNameString
+            dependencies = pkgDescrp ^.. CL.dependencyIf condVars section . CL.packageName . _Wrapped
             buildInfos   = pkgDescrp ^.. CL.buildInfoIf condVars section
             pkgDescrp    = Spec.pkgDescrp spec
             condVars     = Spec.condVars spec
