Unverified Commit 094f4083 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #244979 from fortuneteller2k/blisp

blisp: init at unstable-2023-06-03
parents 1ccdb33c 87b9b9f5
Loading
Loading
Loading
Loading
+42 −0
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchFromGitHub
, argtable
, cmake
, libserialport
, pkg-config
, IOKit
}:

stdenv.mkDerivation {
  pname = "blisp";
  version = "unstable-2023-06-03";

  src = fetchFromGitHub {
    owner = "pine64";
    repo = "blisp";
    rev = "048a72408218788d519a87bcdfb23bcf9ed91a84";
    hash = "sha256-hipJrr0D4uEN2hk8ooXeg0gv0X3w4U9ReXbC4oPEPwI=";
  };

  nativeBuildInputs = [ cmake pkg-config ];

  buildInputs = [
    argtable
    libserialport
  ] ++ lib.optional stdenv.isDarwin IOKit;

  cmakeFlags = [
    "-DBLISP_BUILD_CLI=ON"
    "-DBLISP_USE_SYSTEM_LIBRARIES=ON"
  ];

  meta = with lib; {
    description = "ISP tool & library for Bouffalo Labs RISC-V Microcontrollers and SoCs";
    license = licenses.mit;
    homepage = "https://github.com/pine64/blisp";
    maintainers = [ maintainers.fortuneteller2k ];
  };
}
# TODO: update when next stable release supports building without vendored
# libraries
+4 −0
Original line number Diff line number Diff line
@@ -3252,6 +3252,10 @@ with pkgs;
  blanket = callPackage ../applications/audio/blanket { };
  blisp = darwin.apple_sdk_11_0.callPackage ../development/embedded/blisp {
    inherit (darwin.apple_sdk_11_0.frameworks) IOKit;
  };
  brakeman = callPackage ../development/tools/analysis/brakeman { };
  brewtarget = libsForQt5.callPackage ../applications/misc/brewtarget { } ;