mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, libtool
|
|
, ncurses
|
|
, enableShared ? !stdenv.hostPlatform.isDarwin && !stdenv.hostPlatform.isStatic
|
|
, unicodeSupport ? true
|
|
, withLibrary ? true
|
|
}:
|
|
|
|
assert unicodeSupport -> ncurses.unicodeSupport;
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "dialog";
|
|
version = "1.3-20231002";
|
|
|
|
src = fetchurl {
|
|
url = "https://invisible-island.net/archives/dialog/dialog-${finalAttrs.version}.tgz";
|
|
hash = "sha256-MVZAqwcZIl1cvKsTBYXAXweR/PBzBypf6UeZaaorgzs=";
|
|
};
|
|
|
|
nativeBuildInputs = lib.optionals withLibrary [
|
|
libtool
|
|
];
|
|
|
|
buildInputs = [
|
|
ncurses
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
configureFlags = [
|
|
"--disable-rpath-hacks"
|
|
"--${if withLibrary then "with" else "without"}-libtool"
|
|
"--with-libtool-opts=${lib.optionalString enableShared "-shared"}"
|
|
"--with-ncurses${lib.optionalString unicodeSupport "w"}"
|
|
];
|
|
|
|
installTargets = [
|
|
"install${lib.optionalString withLibrary "-full"}"
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://invisible-island.net/dialog/dialog.html";
|
|
description = "Display dialog boxes from shell";
|
|
license = lib.licenses.lgpl21Plus;
|
|
mainProgram = "dialog";
|
|
maintainers = with lib.maintainers; [ AndersonTorres spacefrogg ];
|
|
inherit (ncurses.meta) platforms;
|
|
};
|
|
})
|