about summary refs log tree commit diff
path: root/emoji-generic.nix
blob: c18774927e3e1ec70352aac3200a7ac5200dc86d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ mkDerivation, attoparsec, base, file-embed, smallcheck, stdenv
, tasty, tasty-hunit, tasty-smallcheck, text, utf8-light
}:
mkDerivation {
  pname = "emoji-generic";
  version = "0.2.0.0";
  src = ./.;
  libraryHaskellDepends = [
    attoparsec base file-embed text utf8-light
  ];
  testHaskellDepends = [
    base smallcheck tasty tasty-hunit tasty-smallcheck
  ];
  description = "A generic Emoji library";
  license = stdenv.lib.licenses.lgpl3;
}