about summary refs log tree commit diff
path: root/pkgs/sternenseemann/emoji-generic/default.nix
blob: 4e687286c3ed1260c7a2bad13aa1e771e5070739 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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 = fetchgit {
    url = "git://github.com/sternenseemann/emoji-generic";
    sha256 = "0xhh55lgjphwal0l0yrcv2cricbl2cimdw7bhc5zrgmjqkg84kk2";
    rev = "3b1267ca254e4b5740a5b963016be198dbde46a1";
    fetchSubmodules = true;
  };
  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;
}