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: 4d93d257f713
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5e2df7039dda
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Jun 21, 2017

  1. sqlite3: 3.19.2 -> 3.19.3

    fpletz committed Jun 21, 2017

    Verified

    This commit was signed with the committer’s verified signature.
    edolstra Eelco Dolstra
    Copy the full SHA
    0977c17 View commit details
  2. Verified

    This commit was signed with the committer’s verified signature.
    edolstra Eelco Dolstra
    Copy the full SHA
    5e2df70 View commit details
Showing with 5 additions and 5 deletions.
  1. +2 −2 pkgs/development/libraries/libmicrohttpd/default.nix
  2. +3 −3 pkgs/development/libraries/sqlite/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/libmicrohttpd/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, libgcrypt, curl, gnutls, pkgconfig }:

stdenv.mkDerivation rec {
name = "libmicrohttpd-0.9.53";
name = "libmicrohttpd-0.9.55";

src = fetchurl {
url = "mirror://gnu/libmicrohttpd/${name}.tar.gz";
sha256 = "1i1c7hwjmc4n31cgmfycgi8xsnm3kyc4zzdd4dir6i0z70nyq5cv";
sha256 = "1y6h1slav5l6k8zyb01dpw65dscdgxxgfa3a0z9qnn7jr66sn70c";
};

outputs = [ "out" "dev" "devdoc" "info" ];
6 changes: 3 additions & 3 deletions pkgs/development/libraries/sqlite/default.nix
Original file line number Diff line number Diff line change
@@ -3,11 +3,11 @@
assert interactive -> readline != null && ncurses != null;

stdenv.mkDerivation {
name = "sqlite-3.19.2";
name = "sqlite-3.19.3";

src = fetchurl {
url = "http://sqlite.org/2017/sqlite-autoconf-3190200.tar.gz";
sha256 = "1z1gmiyx68g1yxc3avc9jnan53irnsq2rsyldwyxcfnc07xn2lya";
url = "http://sqlite.org/2017/sqlite-autoconf-3190300.tar.gz";
sha256 = "00b3l2qglpl1inx21fckiwxnfq5xf6441flc79rqg7zdvh1rq4h6";
};

outputs = [ "bin" "dev" "out" ];