Merge pull request #136819 from samueldr/updates/sunxi-tools-2021-08-29

sunxi-tools: 2018-11-13 -> 2021-08-29
This commit is contained in:
Samuel Dionne-Riel 2021-10-05 23:57:04 -04:00 committed by GitHub
commit 01bd5f8e0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,18 +1,18 @@
{ lib, stdenv, fetchFromGitHub, pkg-config, libusb1, zlib }:
{ lib, stdenv, fetchFromGitHub, pkg-config, dtc, libusb1, zlib }:
stdenv.mkDerivation rec {
pname = "sunxi-tools";
version = "unstable-2018-11-13";
version = "unstable-2021-08-29";
src = fetchFromGitHub {
owner = "linux-sunxi";
repo = "sunxi-tools";
rev = "6d598a0ed714201380e78130213500be6512942b";
sha256 = "1yhl6jfl2cws596ymkyhm8h9qkcvp67v8hlh081lsaqv1i8j9yig";
rev = "74273b671a3fc34048383c40c85c684423009fb9";
sha256 = "1gwamb64vr45iy2ry7jp1k3zc03q5sydmdflrbwr892f0ijh2wjl";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libusb1 zlib ];
buildInputs = [ dtc libusb1 zlib ];
makeFlags = [ "PREFIX=$(out)" ];