about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/colors/default.nix
blob: 245ea3ef30e0a2a6574aeb0eb285022c9e7adfc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal, profunctors }:

cabal.mkDerivation (self: {
  pname = "colors";
  version = "0.1.1";
  sha256 = "1i1n05prbp0l3xgx0w2lxzc5r81pcmbzclsamdr7fmjvhvh8blqm";
  buildDepends = [ profunctors ];
  meta = {
    homepage = "https://github.com/fumieval/colors";
    description = "A type for colors";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})