diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 55ffe105b4ef..89121a2c8d4f 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -30299,6 +30299,30 @@ self: { }) {}; "cabal-helper" = callPackage + ({ mkDerivation, base, bytestring, Cabal, data-default, directory + , extra, filepath, ghc-prim, mtl, process, template-haskell + , temporary, transformers, unix, utf8-string + }: + mkDerivation { + pname = "cabal-helper"; + version = "0.5.1.0"; + sha256 = "563773491cc8245c3d265c2e7847f95198aad74adcbc16a91622e7e4abef4e45"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base Cabal data-default directory filepath ghc-prim mtl process + transformers + ]; + executableHaskellDepends = [ + base bytestring Cabal directory filepath process template-haskell + temporary transformers utf8-string + ]; + testHaskellDepends = [ base extra process unix ]; + description = "Simple interface to some of Cabal's configuration state used by ghc-mod"; + license = stdenv.lib.licenses.agpl3; + }) {}; + + "cabal-helper_0_5_2_0" = callPackage ({ mkDerivation, base, bytestring, Cabal, data-default, directory , extra, filepath, ghc-prim, mtl, process, template-haskell , temporary, transformers, unix, utf8-string