dialog: 1.3-20201126 -> 1.3-20210117
This commit is contained in:
parent
4e00e092c2
commit
01f2574450
1 changed files with 6 additions and 7 deletions
|
@ -1,4 +1,6 @@
|
||||||
{ lib, stdenv, fetchurl
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
, ncurses
|
, ncurses
|
||||||
, withLibrary ? false, libtool
|
, withLibrary ? false, libtool
|
||||||
, unicodeSupport ? true
|
, unicodeSupport ? true
|
||||||
|
@ -10,14 +12,11 @@ assert unicodeSupport -> ncurses.unicode && ncurses != null;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "dialog";
|
pname = "dialog";
|
||||||
version = "1.3-20201126";
|
version = "1.3-20210117";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
urls = [
|
url = "ftp://ftp.invisible-island.net/dialog/${pname}-${version}.tgz";
|
||||||
"ftp://ftp.invisible-island.net/dialog/${pname}-${version}.tgz"
|
sha256 = "PB7Qj0S89vFZ8qpv3nZduU6Jl7Pu+0nYtMhmkWk8Q+E=";
|
||||||
"https://invisible-mirror.net/archives/dialog/${pname}-${version}.tgz"
|
|
||||||
];
|
|
||||||
sha256 = "sha256-ySM6bI6jOlniN45RRq4r0TtRl0TP22R690IK2sWtOGY=";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ncurses ];
|
buildInputs = [ ncurses ];
|
||||||
|
|
Loading…
Reference in a new issue