Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 25 lines 702 B view raw
1{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libusb1 }: 2 3stdenv.mkDerivation { 4 pname = "rkdeveloptool"; 5 version = "1.3"; 6 7 src = fetchFromGitHub { 8 owner = "rockchip-linux"; 9 repo = "rkdeveloptool"; 10 rev = "081d237ad5bf8f03170c9d60bd94ceefa0352aaf"; 11 sha256 = "05hh7j3xgb8l1k1v2lis3nvlc0gp87ihzg6jci7m5lkkm5qgv3ji"; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook pkgconfig ]; 15 16 buildInputs = [ libusb1 ]; 17 18 meta = with stdenv.lib; { 19 homepage = https://github.com/rockchip-linux/rkdeveloptool; 20 description = "A tool from Rockchip to communicate with Rockusb devices"; 21 license = licenses.gpl2; 22 maintainers = [ maintainers.lopsided98 ]; 23 broken = true; 24 }; 25}