umurmur: 0.2.13 -> 0.2.15

gstqt5
William A. Kennington III 2015-02-06 13:13:49 -08:00
parent b65209849a
commit c6749d0306
1 changed files with 9 additions and 6 deletions

View File

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