summary refs log tree commit diff
path: root/pkgs/os-specific/linux/fxload/default.nix
blob: 3255c992f8641be9f941f58673d7f2a0d0c7c543 (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
{lib, stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "fxload-2002_04_11";

  src = fetchurl {
    url = "mirror://sourceforge/linux-hotplug/fxload-2002_04_11.tar.gz";
    sha256 = "1hql93bp3dxrv1p67nc63xsbqwljyynm997ysldrc3n9ifi6s48m";
  };

  patches = [
    # Will be needed after linux-headers is updated to >= 2.6.21.
    (fetchurl {
      url = "http://sources.gentoo.org/viewcvs.py/*checkout*/gentoo-x86/sys-apps/fxload/files/fxload-20020411-linux-headers-2.6.21.patch?rev=1.1";
      sha256 = "0ij0c8nr1rbyl5wmyv1cklhkxglvsqz32h21cjw4bjm151kgmk7p";
    })
  ];

  preBuild = ''
    substituteInPlace Makefile --replace /usr /
    makeFlagsArray=(INSTALL=install prefix=$out)
  '';

  preInstall = ''
    mkdir -p $out/sbin
    mkdir -p $out/share/man/man8
    mkdir -p $out/share/usb
  '';

  meta = with lib; {
    homepage = "http://linux-hotplug.sourceforge.net/?selected=usb";
    description = "Tool to upload firmware to Cypress EZ-USB microcontrollers";
    license = licenses.gpl2;
    platforms = platforms.linux;
  };
}