mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 07:05:13 +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" ```
50 lines
1.4 KiB
Nix
50 lines
1.4 KiB
Nix
{ lib, stdenv, fetchgit, libusb-compat-0_1, libusb1, autoconf, automake, libconfuse, pkg-config
|
|
, gccCross ? null
|
|
}:
|
|
|
|
let
|
|
version = "2011-12-26";
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "xburst-tools";
|
|
inherit version;
|
|
|
|
src = fetchgit {
|
|
url = "git://projects.qi-hardware.com/xburst-tools.git";
|
|
rev = "c71ce8e15db25fe49ce8702917cb17720882e341";
|
|
sha256 = "1hzdngs1l5ivvwnxjwzc246am6w1mj1aidcf0awh9yw0crzcjnjr";
|
|
};
|
|
|
|
preConfigure = ''
|
|
sh autogen.sh
|
|
'';
|
|
|
|
# Workaround build failure on -fno-common toolchains:
|
|
# mipsel-unknown-linux-uclibc-ld: boothandler.o:(.bss+0x8): multiple definition of
|
|
# `start_addr'; main.o:(.bss+0x8): first defined here
|
|
NIX_CFLAGS_COMPILE_FOR_TARGET = "-fcommon";
|
|
|
|
configureFlags = lib.optionals (gccCross != null) [
|
|
"--enable-firmware"
|
|
"CROSS_COMPILE=${gccCross.targetPrefix}"
|
|
];
|
|
|
|
hardeningDisable = [ "pic" "stackprotector" ];
|
|
|
|
# Not to strip cross build binaries (this is for the gcc-cross-wrapper)
|
|
dontCrossStrip = true;
|
|
|
|
nativeBuildInputs = [ autoconf automake pkg-config ];
|
|
buildInputs = [ libusb-compat-0_1 libusb1 libconfuse ] ++
|
|
lib.optional (gccCross != null) gccCross;
|
|
|
|
meta = {
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
description = "Qi tools to access the Ben Nanonote USB_BOOT mode";
|
|
license = lib.licenses.gpl3;
|
|
homepage = "http://www.linux-mtd.infradead.org/";
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.x86_64;
|
|
};
|
|
}
|