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

stdenv.mkDerivation rec {
  name = "umurmur-${version}";
  version = "0.2.15";
  
  src = fetchFromGitHub {
    owner = "fatbob313";
    repo = "umurmur";
    rev = version;
    sha256 = "0q0apnnb3pszhpsbadw52k6mhdc0hk38rk7vnn7dl4fsisfhgmx2";
  };
  
  buildInputs = [ autoreconfHook openssl protobufc libconfig ];

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

  meta = with stdenv.lib; {
    description = "Minimalistic Murmur (Mumble server)";
    license = licenses.bsd3;
    homepage = http://code.google.com/p/umurmur/;
    platforms = platforms.all;
  };
}