about summary refs log tree commit diff
path: root/emoji-generic.nix
blob: 41a8b06527cec033743ad0b679a60f18647e5d36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ mkDerivation, attoparsec, base, conduit, directory, file-embed
, filepath, optparse-applicative, smallcheck, stdenv, tasty
, tasty-hunit, tasty-smallcheck, text, utf8-light, xml-conduit
, xml-types
}:
mkDerivation {
  pname = "emoji-generic";
  version = "0.2.0.0";
  src = ./.;
  isLibrary = true;
  isExecutable = true;
  libraryHaskellDepends = [
    attoparsec base file-embed text utf8-light
  ];
  executableHaskellDepends = [
    attoparsec base conduit directory filepath optparse-applicative
    text xml-conduit xml-types
  ];
  testHaskellDepends = [
    attoparsec base smallcheck tasty tasty-hunit tasty-smallcheck text
  ];
  description = "A generic Emoji library";
  license = stdenv.lib.licenses.lgpl3;
}