7ea86fc8a2
- 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
17 lines
438 B
Nix
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 ];
|
|
};
|
|
})
|