1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/tools/haskell/HaRe/default.nix
2013-09-18 17:17:31 +02:00

31 lines
1 KiB
Nix

{ cabal, cmdtheline, deepseq, Diff, filepath, ghcMod, ghcPaths
, ghcSybUtils, hslogger, hspec, HUnit, mtl, parsec, QuickCheck
, rosezipper, silently, StrafunskiStrategyLib, stringbuilder, syb
, syz, time, transformers
}:
cabal.mkDerivation (self: {
pname = "HaRe";
version = "0.7.0.5";
sha256 = "0i2l0f38j48im3vrqgg54czii5gxszscagdk3928miffac098a7s";
isLibrary = true;
isExecutable = true;
buildDepends = [
cmdtheline filepath ghcMod ghcPaths ghcSybUtils hslogger mtl parsec
rosezipper StrafunskiStrategyLib syb syz time transformers
];
testDepends = [
deepseq Diff filepath ghcMod ghcPaths ghcSybUtils hslogger hspec
HUnit mtl QuickCheck rosezipper silently StrafunskiStrategyLib
stringbuilder syb syz time transformers
];
jailbreak = true;
meta = {
homepage = "http://www.cs.kent.ac.uk/projects/refactor-fp";
description = "the Haskell Refactorer";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})