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

32 lines
788 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pkgconfig, libusb }:
2016-02-09 00:00:05 +00:00
stdenv.mkDerivation {
name = "sunxi-tools-1.3";
src = fetchFromGitHub {
owner = "linux-sunxi";
repo = "sunxi-tools";
2016-02-09 00:00:05 +00:00
rev = "be1b4c7400161b90437432076360c1f99970f54f";
sha256 = "02pqaaahra4wbv325264qh5i17mxwicmjx9nm33nw2dpmfmg9xhr";
2016-02-09 00:00:05 +00:00
};
buildInputs = [ pkgconfig libusb ];
buildPhase = ''
make all misc
'';
installPhase = ''
mkdir -p $out/bin
cp bin2fex fex2bin phoenix_info sunxi-bootinfo sunxi-fel sunxi-fexc sunxi-nand-part sunxi-pio $out/bin
'';
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 ];
};
}