about summary refs log tree commit diff
path: root/emoji-generic.nix
blob: 4bedfc7aa28e8bb108e8ce5a6fb9920747a4b7e4 (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 = [
    attoparsec base smallcheck tasty tasty-hunit tasty-smallcheck text
  ];
  description = "A generic Emoji library";
  license = stdenv.lib.licenses.lgpl3;
}