1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/networking/umurmur/default.nix
William A. Kennington III 73815725a0 umurmur: 0.2.15 -> 0.2.16
2015-04-10 23:23:53 -07:00

25 lines
637 B
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, openssl, protobufc, libconfig }:
stdenv.mkDerivation rec {
name = "umurmur-${version}";
version = "0.2.16";
src = fetchFromGitHub {
owner = "fatbob313";
repo = "umurmur";
rev = version;
sha256 = "0njvdqvjda13v1a2yyjn47mb0l0cdfb2bfvb5s13wpgwy2xxk0px";
};
buildInputs = [ autoreconfHook openssl protobufc libconfig ];
configureFlags = "--with-ssl=openssl";
meta = with stdenv.lib; {
description = "Minimalistic Murmur (Mumble server)";
license = licenses.bsd3;
homepage = http://code.google.com/p/umurmur/;
platforms = platforms.all;
};
}