2012-03-10 11:26:55 +00:00
|
|
|
{ stdenv, fetchgit, libusb, libusb1, autoconf, automake, confuse, pkgconfig
|
2017-04-24 15:41:33 +01:00
|
|
|
, gccCross ? null, crossPrefix
|
|
|
|
}:
|
2010-07-30 00:25:42 +01:00
|
|
|
|
|
|
|
let
|
2012-01-06 21:06:22 +00:00
|
|
|
version = "2011-12-26";
|
2010-07-30 00:25:42 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "xburst-tools-${version}";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = git://projects.qi-hardware.com/xburst-tools.git;
|
2012-01-06 21:06:22 +00:00
|
|
|
rev = "c71ce8e15db25fe49ce8702917cb17720882e341";
|
2016-06-02 12:26:44 +01:00
|
|
|
sha256 = "1hzdngs1l5ivvwnxjwzc246am6w1mj1aidcf0awh9yw0crzcjnjr";
|
2010-07-30 00:25:42 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
sh autogen.sh
|
|
|
|
'';
|
|
|
|
|
2011-04-25 14:24:51 +01:00
|
|
|
configureFlags = if gccCross != null then
|
2017-04-24 15:41:33 +01:00
|
|
|
"--enable-firmware CROSS_COMPILE=${crossPrefix}-"
|
2011-04-25 14:24:51 +01:00
|
|
|
else "";
|
2010-07-30 00:26:07 +01:00
|
|
|
|
|
|
|
# Not to strip cross build binaries (this is for the gcc-cross-wrapper)
|
|
|
|
dontCrossStrip = true;
|
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2012-03-10 11:26:55 +00:00
|
|
|
buildInputs = [ libusb libusb1 autoconf automake confuse ] ++
|
2010-07-30 00:26:07 +01:00
|
|
|
stdenv.lib.optional (gccCross != null) gccCross;
|
2010-07-30 00:25:42 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Qi tools to access the Ben Nanonote USB_BOOT mode";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2010-07-30 00:25:42 +01:00
|
|
|
homepage = http://www.linux-mtd.infradead.org/;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
2016-09-13 09:55:08 +01:00
|
|
|
platforms = stdenv.lib.platforms.x86_64;
|
2010-07-30 00:25:42 +01:00
|
|
|
};
|
|
|
|
}
|