mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +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.3 KiB
Nix
51 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
stdenv,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "jwasm";
|
|
version = "2.18";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Baron-von-Riedesel";
|
|
repo = "JWasm";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-xbiyGBTzIkAfUy45JdAl77gbvArzVUQNPOxa+H2uGFo=";
|
|
};
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
dontConfigure = true;
|
|
|
|
preBuild = ''
|
|
cp ${if stdenv.cc.isClang then "CLUnix.mak" else "GccUnix.mak"} Makefile
|
|
substituteInPlace Makefile \
|
|
--replace "/usr/local/bin" "${placeholder "out"}/bin"
|
|
'';
|
|
|
|
preInstall = ''
|
|
mkdir -p ${placeholder "out"}/bin
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -Dpm644 $src/Html/License.html \
|
|
$src/Html/Manual.html \
|
|
$src/Html/Readme.html \
|
|
-t $doc/share/doc/jwasm/
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/Baron-von-Riedesel/JWasm/";
|
|
description = "MASM-compatible x86 assembler";
|
|
changelog = "https://github.com/Baron-von-Riedesel/JWasm/releases/tag/${finalAttrs.src.rev}";
|
|
mainProgram = "jwasm";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
platforms = lib.platforms.unix;
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
};
|
|
})
|
|
# TODO: generalize for Windows builds
|