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