nixpkgs/pkgs/development/tools/sunxi-tools/default.nix
Jan Tojnar 71278aef73
sunxi-tools: fix build
It was using libusb-compat instead of libusb1, and the former no longer propagates the latter.
2020-04-04 12:34:31 +02:00

30 lines
762 B
Nix

{ 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 ];
};
}