diff options
Diffstat (limited to 'fun/owothia/pkg.nix')
-rw-r--r-- | fun/owothia/pkg.nix | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/fun/owothia/pkg.nix b/fun/owothia/pkg.nix new file mode 100644 index 000000000000..c812e5e11633 --- /dev/null +++ b/fun/owothia/pkg.nix @@ -0,0 +1,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; +} |