nixpkgs/pkgs/development/libraries/haskell/hscolour/default.nix
Peter Simons 7ea86fc8a2 Updated Haskell packages.
- hlint: updated to version 1.8.29
 - hscolour: updated to version 1.20.2
 - random-fu: updated to version 0.2.3.0

svn path=/nixpkgs/trunk/; revision=34324
2012-06-03 18:26:09 +00:00

17 lines
438 B
Nix

{ cabal }:
cabal.mkDerivation (self: {
pname = "hscolour";
version = "1.20.2";
sha256 = "0jl2m2bpsqg2hnf9mmwwrpa7af8wqwaajfp2h3nnnmy5qks10ad5";
isLibrary = true;
isExecutable = true;
meta = {
homepage = "http://code.haskell.org/~malcolm/hscolour/";
description = "Colourise Haskell code";
license = "GPL";
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})