{ mkDerivation, base, bytestring, fetchurl, mtl, network, text }: mkDerivation { pname = "hstatsd"; version = "0.1"; src = fetchurl { url = "http://example.org/"; sha256 = "abc"; }; libraryHaskellDepends = [ base bytestring mtl network text ]; homepage = "https://github.com/mokus0/hstatsd"; description = "Quick and dirty statsd interface"; license = stdenv.lib.licenses.publicDomain; }