summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/colour/default.nix
blob: ecfdbbab0400766908ab4d0a8fd67729cc82eebf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ cabal, Cabal }:

cabal.mkDerivation (self: {
  pname = "colour";
  version = "2.3.3";
  sha256 = "1qmn1778xzg07jg9nx4k1spdz2llivpblf6wwrps1qpqjhsac5cd";
  buildDepends = [ Cabal ];
  meta = {
    homepage = "http://www.haskell.org/haskellwiki/Colour";
    description = "A model for human colour/color perception";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})