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