ghc-pkg-autofix 0.1 → 0.1.1
raw patch · 2 files changed
+3/−3 lines, 2 files
Files
- Main.hs +0/−1
- ghc-pkg-autofix.cabal +3/−2
Main.hs view
@@ -38,7 +38,6 @@ ParseFailed err -> hPrint stderr err ParseOk _ pack -> do let pack' = pack{depends=foldr (uncurry replace) (depends pack) table}- writeFile (snd $ splitFileName infoPath) $ showInstalledPackageInfo pack writeFile infoPath $ showInstalledPackageInfo pack' getPackageName :: String -> String
ghc-pkg-autofix.cabal view
@@ -7,13 +7,14 @@ -- The package version. See the Haskell package versioning policy -- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for -- standards guiding when and how versions should be incremented.-Version: 0.1+Version: 0.1.1 -- A short (one-line) description of the package.-Synopsis: Simple utility to fix BROKEN package dependencies+Synopsis: Simple utility to fix BROKEN package dependencies. -- A longer description of the package. Description: The cabal-install sometimes reinstall existing library and break some package dependencies. This utility fixes such situations by replacing old package id in "broken" package with new id.+ Please Use at your own risk. -- The license under which the package is released. License: BSD3