about summary refs log tree commit diff
path: root/emoji-generic.nix
blob: a2cf7afbdf928db22a89a8e1a3dd344341f0aead (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ mkDerivation, attoparsec, base, file-embed, lib, smallcheck
, 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 = lib.licenses.lgpl3Only;
}