json-c: 0.12 -> 0.12.1

This commit is contained in:
Armijn Hemel 2017-05-01 16:23:14 +02:00
parent daf16b5679
commit ab55c0c2c2
1 changed files with 2 additions and 4 deletions

View File

@ -1,14 +1,12 @@
{ stdenv, fetchurl, autoreconfHook }:
stdenv.mkDerivation rec {
name = "json-c-0.12";
name = "json-c-0.12.1";
src = fetchurl {
url = "https://s3.amazonaws.com/json-c_releases/releases/${name}-nodoc.tar.gz";
sha256 = "0dgvjjyb9xva63l6sy70sdch2w4ryvacdmfd3fg2f2v13lqx5mkg";
sha256 = "148jkvpnxmg1fwwigp0nq9qbd5vzpnmgiw3y34w7k6fymalpsqas";
};
patches = [ ./unused-variable.patch ];
outputs = [ "out" "dev" ];
nativeBuildInputs = [ autoreconfHook ]; # won't configure without it, no idea why