Merge pull request #173997 from adisbladis/rkdeveloptool-pine64-init

rkdeveloptool-pine64: init at unstable-2021-09-04
This commit is contained in:
adisbladis 2022-06-05 08:01:58 +08:00 committed by GitHub
commit 8a970d86ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,44 @@
{ lib
, stdenv
, fetchurl
, meson
, pkg-config
, libusb1
, scdoc
, ninja
, cmake
}:
let
rev = "cce7d2a5c4efd4e7727c440868141229354b327b";
in
stdenv.mkDerivation {
pname = "rkdeveloptool";
version = "unstable-2021-09-04";
src = fetchurl {
url = "https://gitlab.com/pine64-org/quartz-bsp/rkdeveloptool/-/archive/${rev}/rkdeveloptool-${rev}.tar.gz";
sha256 = "sha256-u/x1Y1zZ19SYwNLVAvpqjH247RijyDJ1HTDWIsmqlFk=";
};
postPatch = ''
substituteInPlace meson.build --replace \
"udev_rules_dir = udev.get_pkgconfig_variable('udevdir') + '/rules.d'" \
"udev_rules_dir = '$out/lib/udev'"
'';
nativeBuildInputs = [ meson ninja cmake pkg-config scdoc ];
buildInputs = [ libusb1 ];
meta =
let
inherit (lib) maintainers;
in
{
homepage = "https://gitlab.com/pine64-org/quartz-bsp/rkdeveloptool/";
description = "A tool from Rockchip to communicate with Rockusb devices (pine64 fork)";
license = lib.licenses.gpl2;
maintainers = [ maintainers.adisbladis ];
};
}

View file

@ -29414,6 +29414,8 @@ with pkgs;
rkdeveloptool = callPackage ../misc/rkdeveloptool { };
rkdeveloptool-pine64 = callPackage ../misc/rkdeveloptool-pine64 { };
rocketchat-desktop = callPackage ../applications/networking/instant-messengers/rocketchat-desktop { };
rofi-unwrapped = callPackage ../applications/misc/rofi { };