about summary refs log blame commit diff
path: root/fun/owothia/pkg.nix
blob: c812e5e116330e3f2971408ed527c197a6f78a77 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











              







                              









              



                                      
{ 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;
}