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

Commits on Mar 19, 2019

  1. Copy the full SHA
    efee45b View commit details
  2. Merge pull request #57884 from dtzWill/update/libssh2-1.8.1

    libssh2: 1.8.0 -> 1.8.1 (SECURITY)
    dtzWill authored Mar 19, 2019
    Copy the full SHA
    b9045b0 View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/development/libraries/libssh2/default.nix
7 changes: 4 additions & 3 deletions pkgs/development/libraries/libssh2/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{ stdenv, fetchurl, openssl, zlib, windows }:

stdenv.mkDerivation rec {
name = "libssh2-1.8.0";
pname = "libssh2";
version = "1.8.1";

src = fetchurl {
url = "${meta.homepage}/download/${name}.tar.gz";
sha256 = "1m3n8spv79qhjq4yi0wgly5s5rc8783jb1pyra9bkx1md0plxwrr";
url = "${meta.homepage}/download/${pname}-${version}.tar.gz";
sha256 = "0ngif3ynk6xqzy5nlfjs7bsmfm81g9f145av0z86kf0vbgrigda0";
};

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