nixpkgs/pkgs/applications/networking/umurmur/default.nix

29 lines
680 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, openssl, protobufc, libconfig }:
2012-09-25 10:35:03 -07:00
stdenv.mkDerivation rec {
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 {
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
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
meta = with lib; {
2012-09-25 10:35:03 -07:00
description = "Minimalistic Murmur (Mumble server)";
license = licenses.bsd3;
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
};
}