mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
haskell-cabal-helper: downgrade to version 0.5.1.0
0.5.2.0 has been deprecated.
This commit is contained in:
parent
90144c684b
commit
4bd9f78949
1 changed files with 24 additions and 0 deletions
|
@ -30299,6 +30299,30 @@ self: {
|
||||||
}) {};
|
}) {};
|
||||||
|
|
||||||
"cabal-helper" = callPackage
|
"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
|
({ mkDerivation, base, bytestring, Cabal, data-default, directory
|
||||||
, extra, filepath, ghc-prim, mtl, process, template-haskell
|
, extra, filepath, ghc-prim, mtl, process, template-haskell
|
||||||
, temporary, transformers, unix, utf8-string
|
, temporary, transformers, unix, utf8-string
|
||||||
|
|
Loading…
Reference in a new issue