Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0526d015b68d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fb72ee1d2b22
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 31, 2018

  1. json_c: 0.13 -> 0.13.1

    Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
    
    This update was made based on information from https://repology.org/metapackage/json-c/versions.
    
    These checks were done:
    
    - built on NixOS
    - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
    - found 0.13.1 with grep in /nix/store/3ckha7sbyy0la7qswa3b01n3wgnccqsf-json-c-0.13.1
    - directory tree listing: https://gist.github.com/cad3ba1104556e76a7088a0fd5427df9
    R. RyanTM committed Mar 31, 2018
    Copy the full SHA
    b795452 View commit details
  2. Merge pull request #38222 from r-ryantm/auto-update/json-c

    json_c: 0.13 -> 0.13.1
    nlewo authored Mar 31, 2018
    Copy the full SHA
    fb72ee1 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/json-c/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/json-c/default.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{ stdenv, fetchurl, autoconf }:

stdenv.mkDerivation rec {
name = "json-c-0.13";
name = "json-c-0.13.1";
src = fetchurl {
url = "https://s3.amazonaws.com/json-c_releases/releases/${name}-nodoc.tar.gz";
sha256 = "01jsr647faqrcbsrmzb52s9ppa9ll4pscz4nizk3xlp98q37cwl5";
sha256 = "0ch1v18wk703bpbyzj7h1mkwvsw4rw4qdwvgykscypvqq10678ll";
};

outputs = [ "out" "dev" ];