31 lines
795 B
Nix
31 lines
795 B
Nix
{ 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 ];
|
|
};
|
|
}
|