nixpkgs/pkgs/development/tools/sunxi-tools/default.nix

33 lines
858 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pkgconfig, libusb, zlib }:
2016-02-09 00:00:05 +00:00
stdenv.mkDerivation {
name = "sunxi-tools-20171130";
2016-02-09 00:00:05 +00:00
src = fetchFromGitHub {
owner = "linux-sunxi";
repo = "sunxi-tools";
rev = "5c1971040c6c44caefb98e371bfca9e18d511da9";
sha256 = "0qzm515i3dfn82a6sf7372080zb02d365z52bh0b1q711r4dvjgp";
2016-02-09 00:00:05 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libusb zlib ];
2016-02-09 00:00:05 +00:00
buildPhase = ''
make tools misc
2016-02-09 00:00:05 +00:00
'';
installPhase = ''
mkdir -p $out/bin
cp bin2fex fex2bin phoenix_info sunxi-bootinfo sunxi-fel sunxi-fexc sunxi-nand-image-builder sunxi-nand-part sunxi-pio $out/bin
2016-02-09 00:00:05 +00:00
'';
meta = with stdenv.lib; {
description = "Tools for Allwinner A10 devices";
homepage = http://linux-sunxi.org/;
license = licenses.gpl2Plus;
platforms = platforms.linux;
2016-02-09 00:00:05 +00:00
maintainers = with maintainers; [ elitak ];
};
}