mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 06:14:26 +03:00
umurmur: 0.2.13 -> 0.2.15
This commit is contained in:
parent
b65209849a
commit
c6749d0306
@ -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";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user