summary refs log tree commit diff
path: root/pkgs/development/tools/sunxi-tools/default.nix
blob: b9fc3e2d514cdb9f91a0e7aa27a3298c1a6a7f69 (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
{ stdenv, fetchFromGitHub, pkgconfig, libusb1, zlib }:

stdenv.mkDerivation {
  name = "sunxi-tools-20181113";

  src = fetchFromGitHub {
    owner = "linux-sunxi";
    repo = "sunxi-tools";
    rev = "6d598a0ed714201380e78130213500be6512942b";
    sha256 = "1yhl6jfl2cws596ymkyhm8h9qkcvp67v8hlh081lsaqv1i8j9yig";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ libusb1 zlib ];

  makeFlags = [ "PREFIX=$(out)" ];

  buildFlags = [ "tools" "misc" ];

  installTargets = [ "install-tools" "install-misc" ];

  meta = with stdenv.lib; {
    description = "Tools for Allwinner SoC devices";
    homepage = http://linux-sunxi.org/;
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
    maintainers = with maintainers; [ elitak ];
  };
}