2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, openssl, protobufc, libconfig }:
|
2012-09-25 19:35:03 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "umurmur";
|
2021-03-22 18:29:02 +01:00
|
|
|
version = "0.2.20";
|
2017-02-02 04:48:11 +01:00
|
|
|
|
2015-02-06 22:13:49 +01:00
|
|
|
src = fetchFromGitHub {
|
2017-05-05 18:52:05 +02:00
|
|
|
owner = "umurmur";
|
2015-02-06 22:13:49 +01:00
|
|
|
repo = "umurmur";
|
|
|
|
rev = version;
|
2021-03-22 18:29:02 +01:00
|
|
|
sha256 = "sha256-jp5+NbGmT90ksffvpLYIX2q5cPeVidDCYMPvLHCiP68=";
|
2012-09-25 19:35:03 +02:00
|
|
|
};
|
2017-02-02 04:48:11 +01:00
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ openssl protobufc libconfig ];
|
2012-09-25 19:35:03 +02:00
|
|
|
|
2015-05-25 00:58:26 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--with-ssl=openssl"
|
|
|
|
"--enable-shmapi"
|
|
|
|
];
|
2012-09-25 19:35:03 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2012-09-25 19:35:03 +02:00
|
|
|
description = "Minimalistic Murmur (Mumble server)";
|
2014-12-21 00:00:35 +01:00
|
|
|
license = licenses.bsd3;
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/umurmur/umurmur";
|
2015-02-06 22:15:23 +01:00
|
|
|
platforms = platforms.all;
|
2012-09-25 19:35:03 +02:00
|
|
|
};
|
|
|
|
}
|