a291c8690a
GitOrigin-RevId: e6e19f3d81a982a62e1bba08f0b4f7fdc21b4ea0
34 lines
450 B
Nix
34 lines
450 B
Nix
{ 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;
|
|
}
|