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