mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +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" ```
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl, bison, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ispell";
|
|
version = "3.4.06";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.cs.hmc.edu/~geoff/tars/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-F8kWM9TIB1rMUDFjoWRj/FSrHHRTKArTnNPbdceD66Y=";
|
|
};
|
|
|
|
buildInputs = [ bison ncurses ];
|
|
|
|
postPatch = ''
|
|
cat >> local.h <<EOF
|
|
${lib.optionalString (!stdenv.hostPlatform.isDarwin) "#define USG"}
|
|
#define TERMLIB "-lncurses"
|
|
#define LANGUAGES "{american,MASTERDICTS=american.med,HASHFILES=americanmed.hash}"
|
|
#define MASTERHASH "americanmed.hash"
|
|
#define BINDIR "$out/bin"
|
|
#define LIBDIR "$out/lib"
|
|
#define ELISPDIR "{$out}/share/emacs/site-lisp"
|
|
#define TEXINFODIR "$out/share/info"
|
|
#define MAN1DIR "$out/share/man/man1"
|
|
#define MAN4DIR "$out/share/man/man4"
|
|
#define MAN45DIR "$out/share/man/man5"
|
|
#define MINIMENU
|
|
#define HAS_RENAME
|
|
EOF
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Interactive spell-checking program for Unix";
|
|
homepage = "https://www.cs.hmc.edu/~geoff/ispell.html";
|
|
license = licenses.free;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|