about summary refs log tree commit diff
path: root/fun/owothia/pkg.nix
blob: c812e5e116330e3f2971408ed527c197a6f78a77 (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
25
26
27
28
29
30
31
32
33
34
{ mkDerivation
, base
, bytestring
, chatter
, containers
, envy
, irc-client
, lens
, lib
, random
, relude
, text
}:
mkDerivation {
  pname = "owothia";
  version = "0.0.1.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    base
    bytestring
    chatter
    containers
    envy
    irc-client
    lens
    random
    relude
    text
  ];
  license = "unknown";
  hydraPlatforms = lib.platforms.none;
}