1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-23 00:01:24 -04:00
nixpkgs/pkgs/development/libraries/haskell/hscolour/default.nix

20 lines
489 B
Nix

{ cabal }:
cabal.mkDerivation (self: {
pname = "hscolour";
version = "1.20.3";
sha256 = "15ix93sw4p7g5ln2halcgqppdc0i0vmkzcjzxvqzkk9yp9pq3nrs";
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
self.stdenv.lib.maintainers.simons
];
};
})