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: dc9b00763735
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ce4c8e7fa52f
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 27, 2020

  1. xmlrpc_c: 1.39.12 -> 1.51.06

    r-ryantm committed May 27, 2020
    Copy the full SHA
    4fdefd5 View commit details

Commits on May 28, 2020

  1. Merge pull request #89053 from r-ryantm/auto-update/xmlrpc-c

    xmlrpc_c: 1.39.12 -> 1.51.06
    ryantm authored May 28, 2020
    Copy the full SHA
    ce4c8e7 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/xmlrpc-c/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/xmlrpc-c/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, curl, libxml2 }:

stdenv.mkDerivation rec {
name = "xmlrpc-c-1.39.12";
name = "xmlrpc-c-1.51.06";

src = fetchurl {
url = "mirror://sourceforge/xmlrpc-c/${name}.tgz";
sha256 = "026fh7w7y3q9pvxd09i5d4hq3l6gd81n9k19yq4zwbc398kg6c6q";
sha256 = "1l4zz22q10081vr06b8sii0l3krr64xyiywz6rcladw8kiyxip06";
};

buildInputs = [ curl libxml2 ];