summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hstatsd/default.nix
blob: 91a6159784abc2379d1299c1315913306e0dbf8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
  };
})