mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
531e4b80c9
Only acts on one-line dependency lists.
29 lines
691 B
Nix
29 lines
691 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, openssl, protobufc, libconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "umurmur-${version}";
|
|
version = "0.2.17";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "umurmur";
|
|
repo = "umurmur";
|
|
rev = version;
|
|
sha256 = "074px4ygmv4ydy2pqwxwnz17f0hfswqkz5kc9qfz0iby3h5i3fyl";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ openssl protobufc libconfig ];
|
|
|
|
configureFlags = [
|
|
"--with-ssl=openssl"
|
|
"--enable-shmapi"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Minimalistic Murmur (Mumble server)";
|
|
license = licenses.bsd3;
|
|
homepage = https://github.com/umurmur/umurmur;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|