diff options
author | Ian Lynagh <igloo@earth.li> | 2011-04-02 14:17:17 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-04-02 14:17:17 +0100 |
commit | 648979d03f9b27f7f813d3a08bf30bf0f17c54ee (patch) | |
tree | 4bed15bed8e56005299338470f71577298ef1b3b /libraries | |
parent | 9aa71a3ee0361c4796586b61bb2ab2beaeec1dc5 (diff) | |
download | haskell-648979d03f9b27f7f813d3a08bf30bf0f17c54ee.tar.gz |
Follow changes in Cabal
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/bin-package-db/Distribution/InstalledPackageInfo/Binary.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libraries/bin-package-db/Distribution/InstalledPackageInfo/Binary.hs b/libraries/bin-package-db/Distribution/InstalledPackageInfo/Binary.hs index af831483da..47bb8f4690 100644 --- a/libraries/bin-package-db/Distribution/InstalledPackageInfo/Binary.hs +++ b/libraries/bin-package-db/Distribution/InstalledPackageInfo/Binary.hs @@ -59,6 +59,7 @@ putInstalledPackageInfo ipi = do put (stability ipi) put (homepage ipi) put (pkgUrl ipi) + put (synopsis ipi) put (description ipi) put (category ipi) put (exposed ipi) @@ -91,6 +92,7 @@ getInstalledPackageInfo = do stability <- get homepage <- get pkgUrl <- get + synopsis <- get description <- get category <- get exposed <- get |