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

Commits on Mar 2, 2019

  1. dialog: 1.3-20181107 -> 1.3-20190211

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/dialog/versions
    r-ryantm committed Mar 2, 2019
    Copy the full SHA
    1b19420 View commit details
  2. Merge pull request #56628 from r-ryantm/auto-update/dialog

    dialog: 1.3-20181107 -> 1.3-20190211
    disassembler authored Mar 2, 2019
    Copy the full SHA
    cebf143 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/tools/misc/dialog/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/tools/misc/dialog/default.nix
Original file line number Diff line number Diff line change
@@ -9,14 +9,14 @@ assert unicodeSupport -> ncurses.unicode && ncurses != null;

stdenv.mkDerivation rec {
name = "dialog-${version}";
version = "1.3-20181107";
version = "1.3-20190211";

src = fetchurl {
urls = [
"ftp://ftp.invisible-island.net/dialog/${name}.tgz"
"https://invisible-mirror.net/archives/dialog/${name}.tgz"
];
sha256 = "0mv4a31sz5kc1hyc51cvg9dq54vhlz0vbizn7jgkm9fx4y0cmspg";
sha256 = "1lx0bvradzx1zl7znlrsnyljcs596r7wamkhyq37ikbxsy4y5h29";
};

buildInputs = [ ncurses ];