nixpkgs/pkgs/development/libraries/haskell/hindent/default.nix

23 lines
652 B
Nix
Raw Normal View History

2014-09-02 03:48:34 -07:00
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, dataDefault, haskellSrcExts, hspec, monadLoops, mtl, text
}:
2014-09-02 03:48:34 -07:00
cabal.mkDerivation (self: {
pname = "hindent";
2014-10-19 05:21:31 -07:00
version = "3.9";
sha256 = "0x8qm39rmaw1s0fbljr9zp6vnqxfcs1w6a3ylrknwqgwbzzr5hbn";
2014-09-02 03:48:34 -07:00
isLibrary = true;
isExecutable = true;
2014-09-23 05:17:45 -07:00
buildDepends = [ dataDefault haskellSrcExts monadLoops mtl text ];
testDepends = [
dataDefault haskellSrcExts hspec monadLoops mtl text
];
doCheck = false;
2014-09-02 03:48:34 -07:00
meta = {
description = "Extensible Haskell pretty printer";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})