nixpkgs/pkgs/development/libraries/haskell/language-java/default.nix
Peter Simons 0740a07c13 haskell-language-java: go back to version 0.2.5
This reverts commit 416bd743f086f77f0d0b31e0fcd9edbe80dd0e92. Version 0.2.5.1
seems to have disappeared from Hackage.
2013-08-17 11:18:21 +02:00

23 lines
742 B
Nix

{ cabal, alex, cpphs, filepath, HUnit, mtl, parsec, QuickCheck, syb
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2
}:
cabal.mkDerivation (self: {
pname = "language-java";
version = "0.2.5";
sha256 = "1l3q156m3l3fawsrgj3fr16qxr0apwg2si410j0f5hsgfmkhdrm6";
buildDepends = [ cpphs parsec syb ];
testDepends = [
filepath HUnit mtl QuickCheck testFramework testFrameworkHunit
testFrameworkQuickcheck2
];
buildTools = [ alex ];
doCheck = false;
meta = {
homepage = "http://github.com/vincenthz/language-java";
description = "Manipulating Java source: abstract syntax, lexer, parser, and pretty-printer";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})