summary refs log tree commit diff
path: root/pkgs/applications/networking/umurmur/default.nix
blob: 1f08b9873d447b733f8a44ca2bdf9ec051cf590d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, openssl, protobufc, libconfig }:

stdenv.mkDerivation rec {
  name = "umurmur-0.2.13";
  
  src = fetchurl {
    url = "http://umurmur.googlecode.com/files/${name}.tar.gz";
    sha1 = "c9345b67213f52688fef2113132c62d2edbf4bea";
  };
  
  buildInputs = [ openssl protobufc libconfig ];

  configureFlags = "--with-ssl=openssl";

  meta = {
    description = "Minimalistic Murmur (Mumble server)";
    license = "BSD";
    homepage = http://code.google.com/p/umurmur/;
  };
}