summary refs log tree commit diff
path: root/pkgs/tools/misc/xburst-tools/default.nix
blob: 685307bb0227169c38be57b13cab7d0d5684a00a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{ stdenv, fetchgit, libusb, autoconf, automake, confuse
, gccCross ? null }:

let
  version = "2010-07-29";
in
stdenv.mkDerivation {
  name = "xburst-tools-${version}";

  src = fetchgit {
    url = git://projects.qi-hardware.com/xburst-tools.git;
    rev = "00be212db22643ad602eaf60b30eb943f119e78d";
    sha256 = "66ea1a81b71bad599d76691f07a986f9bb2ccecf397e8486b661d8baace3460e";
  };

  prePatch = ''
    find . -name Makefile* -exec sed -i \
      -e s/mipsel-openwrt-linux-/mipsel-unknown-linux-/ {} \;
  '';

  patches = [ ./gcc-4.4.patch ];

  preConfigure = ''
    sh autogen.sh
  '';

  configureFlags = if gccCross != null then "--enable-firmware" else "";

  # Not to strip cross build binaries (this is for the gcc-cross-wrapper)
  dontCrossStrip = true;

  buildInputs = [ libusb autoconf automake confuse ] ++
    stdenv.lib.optional (gccCross != null) gccCross;

  meta = {
    description = "Qi tools to access the Ben Nanonote USB_BOOT mode";
    license = "GPLv3";
    homepage = http://www.linux-mtd.infradead.org/;
    maintainers = with stdenv.lib.maintainers; [viric];
    platforms = with stdenv.lib.platforms; linux;
  };
}