nixpkgs/pkgs/applications/networking/umurmur/default.nix
2012-09-25 19:35:03 +02:00

21 lines
508 B
Nix

{ stdenv, fetchurl, openssl, protobufc, libconfig }:
stdenv.mkDerivation rec {
name = "umurmur-0.2.10";
src = fetchurl {
url = "http://umurmur.googlecode.com/files/${name}.tar.gz";
sha256 = "0c990jvm73a6lajr1qlzw0p6nkshkh2nqwjmz2sq79pj0hm9ckvy";
};
buildInputs = [ openssl protobufc libconfig ];
configureFlags = "--with-ssl=openssl";
meta = {
description = "Minimalistic Murmur (Mumble server)";
license = "BSD";
homepage = http://code.google.com/p/umurmur/;
};
}