umurmur: 0.2.13 -> 0.2.15

This commit is contained in:
William A. Kennington III 2015-02-06 13:13:49 -08:00
parent b65209849a
commit c6749d0306

View File

@ -1,14 +1,17 @@
{ stdenv, fetchurl, openssl, protobufc, libconfig }: { stdenv, fetchFromGitHub, autoreconfHook, openssl, protobufc, libconfig }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "umurmur-0.2.13"; name = "umurmur-${version}";
version = "0.2.15";
src = fetchurl { src = fetchFromGitHub {
url = "http://umurmur.googlecode.com/files/${name}.tar.gz"; owner = "fatbob313";
sha1 = "c9345b67213f52688fef2113132c62d2edbf4bea"; repo = "umurmur";
rev = version;
sha256 = "0q0apnnb3pszhpsbadw52k6mhdc0hk38rk7vnn7dl4fsisfhgmx2";
}; };
buildInputs = [ openssl protobufc libconfig ]; buildInputs = [ autoreconfHook openssl protobufc libconfig ];
configureFlags = "--with-ssl=openssl"; configureFlags = "--with-ssl=openssl";