dialog: 1.3-2210306 -> 1.3-2210324
This commit is contained in:
42
pkgs/tools/misc/dialog/default.nix
Normal file
42
pkgs/tools/misc/dialog/default.nix
Normal file
@@ -0,0 +1,42 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, ncurses
|
||||
, withLibrary ? false, libtool
|
||||
, unicodeSupport ? true
|
||||
, enableShared ? !stdenv.isDarwin
|
||||
}:
|
||||
|
||||
assert withLibrary -> libtool != null;
|
||||
assert unicodeSupport -> ncurses.unicode && ncurses != null;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "dialog";
|
||||
version = "1.3-20210324";
|
||||
|
||||
src = fetchurl {
|
||||
url = "ftp://ftp.invisible-island.net/dialog/${pname}-${version}.tgz";
|
||||
hash = "sha256-AcLR4umvmwg+ogDKrQhP39pVF41bv05Cyf/0STUVFlM=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
ncurses
|
||||
];
|
||||
|
||||
configureFlags = [
|
||||
"--disable-rpath-hacks"
|
||||
(lib.withFeature withLibrary "libtool")
|
||||
"--with-ncurses${lib.optionalString unicodeSupport "w"}"
|
||||
"--with-libtool-opts=${lib.optionalString enableShared "-shared"}"
|
||||
];
|
||||
|
||||
installTargets = [ "install${lib.optionalString withLibrary "-full"}" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://invisible-island.net/dialog/dialog.html";
|
||||
description = "Display dialog boxes from shell";
|
||||
license = licenses.lgpl21Plus;
|
||||
maintainers = with maintainers; [ AndersonTorres spacefrogg ];
|
||||
platforms = ncurses.meta.platforms;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user