sunxi-tools: init at 1.3
This commit is contained in:
parent
0ee88cffca
commit
0d1d91efdd
3 changed files with 33 additions and 1 deletions
|
@ -94,10 +94,11 @@
|
|||
eduarrrd = "Eduard Bachmakov <e.bachmakov@gmail.com>";
|
||||
edwtjo = "Edward Tjörnhammar <ed@cflags.cc>";
|
||||
eelco = "Eelco Dolstra <eelco.dolstra@logicblox.com>";
|
||||
ehmry = "Emery Hemingway <emery@vfemail.net>";
|
||||
eikek = "Eike Kettner <eike.kettner@posteo.de>";
|
||||
elasticdog = "Aaron Bull Schaefer <aaron@elasticdog.com>";
|
||||
elitak = "Eric Litak <elitak@gmail.com>";
|
||||
ellis = "Ellis Whitehead <nixos@ellisw.net>";
|
||||
ehmry = "Emery Hemingway <emery@vfemail.net>";
|
||||
epitrochoid = "Mabry Cervin <mpcervin@uncg.edu>";
|
||||
ericbmerritt = "Eric Merritt <eric@afiniate.com>";
|
||||
ericsagnes = "Eric Sagnes <eric.sagnes@gmail.com>";
|
||||
|
|
29
pkgs/development/tools/sunxi-tools/default.nix
Normal file
29
pkgs/development/tools/sunxi-tools/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ stdenv, fetchgit, pkgconfig, libusb }:
|
||||
stdenv.mkDerivation {
|
||||
name = "sunxi-tools-1.3";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/linux-sunxi/sunxi-tools";
|
||||
rev = "be1b4c7400161b90437432076360c1f99970f54f";
|
||||
sha256 = "0qbl4v66a3mvqai29q2y60zf2b5lj32mh9gyn44gfp0w2bsb10yj";
|
||||
};
|
||||
|
||||
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.unix;
|
||||
maintainers = with maintainers; [ elitak ];
|
||||
};
|
||||
}
|
|
@ -3207,6 +3207,8 @@ let
|
|||
|
||||
sundtek = callPackage ../misc/drivers/sundtek { };
|
||||
|
||||
sunxi-tools = callPackage ../development/tools/sunxi-tools { };
|
||||
|
||||
super = callPackage ../tools/security/super { };
|
||||
|
||||
supertux-editor = callPackage ../applications/editors/supertux-editor { };
|
||||
|
|
Loading…
Reference in a new issue