mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +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" ```
81 lines
1.6 KiB
Nix
81 lines
1.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, pkg-config
|
|
, fontconfig
|
|
, freetype
|
|
, libX11
|
|
, libXft
|
|
, ncurses
|
|
, writeText
|
|
, conf ? null
|
|
, patches ? [ ]
|
|
, extraLibs ? [ ]
|
|
, nixosTests
|
|
# update script dependencies
|
|
, gitUpdater
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "st";
|
|
version = "0.9.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://dl.suckless.org/st/st-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-ayFdT0crIdYjLzDyIRF6d34kvP7miVXd77dCZGf5SUs=";
|
|
};
|
|
|
|
outputs = [ "out" "terminfo" ];
|
|
|
|
inherit patches;
|
|
|
|
configFile = lib.optionalString (conf != null)
|
|
(writeText "config.def.h" conf);
|
|
|
|
postPatch = lib.optionalString (conf != null) "cp ${finalAttrs.configFile} config.def.h"
|
|
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
substituteInPlace config.mk --replace "-lrt" ""
|
|
'';
|
|
|
|
strictDeps = true;
|
|
|
|
makeFlags = [
|
|
"PKG_CONFIG=${stdenv.cc.targetPrefix}pkg-config"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
ncurses
|
|
fontconfig
|
|
freetype
|
|
];
|
|
buildInputs = [
|
|
libX11
|
|
libXft
|
|
] ++ extraLibs;
|
|
|
|
preInstall = ''
|
|
export TERMINFO=$terminfo/share/terminfo
|
|
mkdir -p $TERMINFO $out/nix-support
|
|
echo "$terminfo" >> $out/nix-support/propagated-user-env-packages
|
|
'';
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
passthru = {
|
|
tests.test = nixosTests.terminal-emulators.st;
|
|
updateScript = gitUpdater {
|
|
url = "git://git.suckless.org/st";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://st.suckless.org/";
|
|
description = "Simple Terminal for X from Suckless.org Community";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ qusic ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "st";
|
|
};
|
|
})
|