mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
21 lines
508 B
Nix
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/;
|
|
};
|
|
}
|