3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/sunxi-tools/default.nix

31 lines
804 B
Nix
Raw Normal View History

2021-09-05 23:27:18 +01:00
{ lib, stdenv, fetchFromGitHub, pkg-config, dtc, libusb1, zlib }:
stdenv.mkDerivation rec {
pname = "sunxi-tools";
2021-09-05 23:27:18 +01:00
version = "unstable-2021-08-29";
2016-02-09 00:00:05 +00:00
src = fetchFromGitHub {
owner = "linux-sunxi";
repo = "sunxi-tools";
2021-09-05 23:27:18 +01:00
rev = "74273b671a3fc34048383c40c85c684423009fb9";
sha256 = "1gwamb64vr45iy2ry7jp1k3zc03q5sydmdflrbwr892f0ijh2wjl";
2016-02-09 00:00:05 +00:00
};
nativeBuildInputs = [ pkg-config ];
2021-09-05 23:27:18 +01:00
buildInputs = [ dtc libusb1 zlib ];
2016-02-09 00:00:05 +00:00
2018-05-13 01:53:26 +01:00
makeFlags = [ "PREFIX=$(out)" ];
2016-02-09 00:00:05 +00:00
2018-05-13 01:53:26 +01:00
buildFlags = [ "tools" "misc" ];
installTargets = [ "install-tools" "install-misc" ];
2016-02-09 00:00:05 +00:00
meta = with lib; {
2018-11-25 02:04:13 +00:00
description = "Tools for Allwinner SoC devices";
homepage = "http://linux-sunxi.org/";
2016-02-09 00:00:05 +00:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
2016-02-09 00:00:05 +00:00
maintainers = with maintainers; [ elitak ];
};
}