about summary refs log tree commit diff
path: root/pkgs/sternenseemann/emoji-generic/default.nix
blob: 395b6caff1fc47927b2c1071dfd72a74ee2e2fcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ mkDerivation, attoparsec, base, fetchgit, file-embed, lib
, smallcheck, tasty, tasty-hunit, tasty-smallcheck, text
, utf8-light
}:
mkDerivation {
  pname = "emoji-generic";
  version = "0.2.0.0";
  src = null; # overridden in ../default.nix
  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.lgpl3;
}