about summary refs log tree commit diff
path: root/pkgs/applications/networking/umurmur/default.nix
blob: 194b22f0fd724ebdce139ff5b008642a3e7cb443 (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
25
26
27
{ stdenv, fetchFromGitHub, autoreconfHook, openssl, protobufc, libconfig }:

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

  configureFlags = [
    "--with-ssl=openssl"
    "--enable-shmapi"
  ];

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