1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-22 22:16:09 -04:00
nixpkgs/pkgs/applications/networking/umurmur/default.nix

24 lines
606 B
Nix
Raw Normal View History

2015-02-06 16:13:49 -05:00
{ stdenv, fetchFromGitHub, autoreconfHook, openssl, protobufc, libconfig }:
2012-09-25 13:35:03 -04:00
stdenv.mkDerivation rec {
2015-02-06 16:13:49 -05:00
name = "umurmur-${version}";
version = "0.2.15";
2012-09-25 13:35:03 -04:00
2015-02-06 16:13:49 -05:00
src = fetchFromGitHub {
owner = "fatbob313";
repo = "umurmur";
rev = version;
sha256 = "0q0apnnb3pszhpsbadw52k6mhdc0hk38rk7vnn7dl4fsisfhgmx2";
2012-09-25 13:35:03 -04:00
};
2015-02-06 16:13:49 -05:00
buildInputs = [ autoreconfHook openssl protobufc libconfig ];
2012-09-25 13:35:03 -04:00
configureFlags = "--with-ssl=openssl";
meta = with stdenv.lib; {
2012-09-25 13:35:03 -04:00
description = "Minimalistic Murmur (Mumble server)";
license = licenses.bsd3;
2012-09-25 13:35:03 -04:00
homepage = http://code.google.com/p/umurmur/;
};
}