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

23 lines
654 B
Nix
Raw Normal View History

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