2015-02-06 21:13:49 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, openssl, protobufc, libconfig }:
|
2012-09-25 18:35:03 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-02-06 21:13:49 +00:00
|
|
|
name = "umurmur-${version}";
|
|
|
|
version = "0.2.15";
|
2012-09-25 18:35:03 +01:00
|
|
|
|
2015-02-06 21:13:49 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fatbob313";
|
|
|
|
repo = "umurmur";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0q0apnnb3pszhpsbadw52k6mhdc0hk38rk7vnn7dl4fsisfhgmx2";
|
2012-09-25 18:35:03 +01:00
|
|
|
};
|
|
|
|
|
2015-02-06 21:13:49 +00:00
|
|
|
buildInputs = [ autoreconfHook openssl protobufc libconfig ];
|
2012-09-25 18:35:03 +01:00
|
|
|
|
|
|
|
configureFlags = "--with-ssl=openssl";
|
|
|
|
|
2014-12-20 23:00:35 +00:00
|
|
|
meta = with stdenv.lib; {
|
2012-09-25 18:35:03 +01:00
|
|
|
description = "Minimalistic Murmur (Mumble server)";
|
2014-12-20 23:00:35 +00:00
|
|
|
license = licenses.bsd3;
|
2012-09-25 18:35:03 +01:00
|
|
|
homepage = http://code.google.com/p/umurmur/;
|
|
|
|
};
|
|
|
|
}
|