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

stdenv.mkDerivation rec {
  pname = "sunxi-tools";
  version = "unstable-2018-11-13";

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

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ libusb1 zlib ];

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

  buildFlags = [ "tools" "misc" ];

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

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