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 {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "umurmur";
|
2017-05-05 17:52:05 +01:00
|
|
|
version = "0.2.17";
|
2017-02-02 03:48:11 +00:00
|
|
|
|
2015-02-06 21:13:49 +00:00
|
|
|
src = fetchFromGitHub {
|
2017-05-05 17:52:05 +01:00
|
|
|
owner = "umurmur";
|
2015-02-06 21:13:49 +00:00
|
|
|
repo = "umurmur";
|
|
|
|
rev = version;
|
2017-05-05 17:52:05 +01:00
|
|
|
sha256 = "074px4ygmv4ydy2pqwxwnz17f0hfswqkz5kc9qfz0iby3h5i3fyl";
|
2012-09-25 18:35:03 +01:00
|
|
|
};
|
2017-02-02 03:48:11 +00:00
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ openssl protobufc libconfig ];
|
2012-09-25 18:35:03 +01:00
|
|
|
|
2015-05-24 23:58:26 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-ssl=openssl"
|
|
|
|
"--enable-shmapi"
|
|
|
|
];
|
2012-09-25 18:35:03 +01:00
|
|
|
|
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;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/umurmur/umurmur";
|
2015-02-06 21:15:23 +00:00
|
|
|
platforms = platforms.all;
|
2012-09-25 18:35:03 +01:00
|
|
|
};
|
|
|
|
}
|