2012-03-10 12:26:55 +01:00
|
|
|
{ stdenv, fetchgit, libusb, libusb1, autoconf, automake, confuse, pkgconfig
|
2018-05-10 04:40:27 +02:00
|
|
|
, gccCross ? null
|
2017-04-24 16:41:33 +02:00
|
|
|
}:
|
2010-07-30 01:25:42 +02:00
|
|
|
|
|
|
|
let
|
2012-01-06 22:06:22 +01:00
|
|
|
version = "2011-12-26";
|
2010-07-30 01:25:42 +02:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "xburst-tools-${version}";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = git://projects.qi-hardware.com/xburst-tools.git;
|
2012-01-06 22:06:22 +01:00
|
|
|
rev = "c71ce8e15db25fe49ce8702917cb17720882e341";
|
2016-06-02 13:26:44 +02:00
|
|
|
sha256 = "1hzdngs1l5ivvwnxjwzc246am6w1mj1aidcf0awh9yw0crzcjnjr";
|
2010-07-30 01:25:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
sh autogen.sh
|
|
|
|
'';
|
|
|
|
|
2018-08-03 18:52:40 +02:00
|
|
|
configureFlags = stdenv.lib.optionals (gccCross != null) [
|
|
|
|
"--enable-firmware"
|
|
|
|
"CROSS_COMPILE=${gccCross.targetPrefix}"
|
|
|
|
];
|
2010-07-30 01:26:07 +02:00
|
|
|
|
2018-04-03 23:32:46 +02:00
|
|
|
hardeningDisable = [ "pic" "stackprotector" ];
|
|
|
|
|
2010-07-30 01:26:07 +02:00
|
|
|
# Not to strip cross build binaries (this is for the gcc-cross-wrapper)
|
|
|
|
dontCrossStrip = true;
|
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2012-03-10 12:26:55 +01:00
|
|
|
buildInputs = [ libusb libusb1 autoconf automake confuse ] ++
|
2010-07-30 01:26:07 +02:00
|
|
|
stdenv.lib.optional (gccCross != null) gccCross;
|
2010-07-30 01:25:42 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Qi tools to access the Ben Nanonote USB_BOOT mode";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2010-07-30 01:25:42 +02:00
|
|
|
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;
|
2010-07-30 01:25:42 +02:00
|
|
|
};
|
|
|
|
}
|