haskell-hstatsd: add version 0.1

This commit is contained in:
Peter Simons
2013-05-21 11:00:09 +02:00
parent d85cf7e410
commit 448dc95943
2 changed files with 16 additions and 0 deletions
@@ -0,0 +1,14 @@
{ cabal, mtl, network, text }:
cabal.mkDerivation (self: {
pname = "hstatsd";
version = "0.1";
sha256 = "092q52yyb1xdji1y72bdcgvp8by2w1z9j717sl1gmh2p89cpjrs4";
buildDepends = [ mtl network text ];
meta = {
homepage = "https://github.com/mokus0/hstatsd";
description = "Quick and dirty statsd interface";
license = self.stdenv.lib.licenses.publicDomain;
platforms = self.ghc.meta.platforms;
};
})