nixpkgs/pkgs/tools/misc/xburst-tools/default.nix

44 lines
1.2 KiB
Nix
Raw Normal View History

2020-04-28 05:29:39 +02:00
{ stdenv, fetchgit, libusb-compat-0_1, libusb1, autoconf, automake, libconfuse, pkgconfig
2018-05-10 04:40:27 +02:00
, gccCross ? null
}:
let
version = "2011-12-26";
in
stdenv.mkDerivation {
2019-08-13 23:52:01 +02:00
pname = "xburst-tools";
inherit version;
src = fetchgit {
url = "git://projects.qi-hardware.com/xburst-tools.git";
rev = "c71ce8e15db25fe49ce8702917cb17720882e341";
sha256 = "1hzdngs1l5ivvwnxjwzc246am6w1mj1aidcf0awh9yw0crzcjnjr";
};
preConfigure = ''
sh autogen.sh
'';
configureFlags = stdenv.lib.optionals (gccCross != null) [
"--enable-firmware"
"CROSS_COMPILE=${gccCross.targetPrefix}"
];
2018-04-03 23:32:46 +02:00
hardeningDisable = [ "pic" "stackprotector" ];
# Not to strip cross build binaries (this is for the gcc-cross-wrapper)
dontCrossStrip = true;
nativeBuildInputs = [ autoconf automake pkgconfig ];
2020-04-28 05:29:39 +02:00
buildInputs = [ libusb-compat-0_1 libusb1 libconfuse ] ++
stdenv.lib.optional (gccCross != null) gccCross;
meta = {
description = "Qi tools to access the Ben Nanonote USB_BOOT mode";
license = stdenv.lib.licenses.gpl3;
homepage = "http://www.linux-mtd.infradead.org/";
maintainers = with stdenv.lib.maintainers; [viric];
2016-09-13 10:55:08 +02:00
platforms = stdenv.lib.platforms.x86_64;
};
}