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: 197bc2afc03c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7d8ed1c921f2
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 27, 2019

  1. libdap: 3.20.2 -> 3.20.3 (#57273)

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/libdap/versions
    r-ryantm authored and xeji committed Mar 27, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    afreakk Hans
    Copy the full SHA
    7d8ed1c View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/libdap/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/libdap/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{ stdenv, fetchurl, bison, libuuid, curl, libxml2, flex }:

stdenv.mkDerivation rec {
version = "3.20.2";
version = "3.20.3";
name = "libdap-${version}";

nativeBuildInputs = [ bison flex ];
buildInputs = [ libuuid curl libxml2 ];

src = fetchurl {
url = "https://www.opendap.org/pub/source/${name}.tar.gz";
sha256 = "0kp35ghj48wqgy67xyplwhmw21r8r0p00y2hw0fv65g4yrsgvsk0";
sha256 = "0n6ciicaa7sn88gvg5sgcq0438i3vh6xbl9lxgafjqiznli1k5i9";
};

meta = with stdenv.lib; {