bloom: init at 1.0.0

This commit is contained in:
éclairevoyant 2023-10-27 18:13:44 -04:00
parent a9d001fd4a
commit 0ef5d06920
No known key found for this signature in database
GPG Key ID: E3813AEAA02DB54B
2 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,55 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, yaml-cpp
, qtbase
, qtsvg
, wrapQtAppsHook
, qttools
, libusb1
, php
, hidapi
, procps
}:
stdenv.mkDerivation rec {
pname = "bloom";
version = "1.0.0";
src = fetchFromGitHub {
owner = "bloombloombloom";
repo = "Bloom";
rev = "v${version}";
hash = "sha256-ZZfclZwxsCgApUII79bJVyT5V/dF9jm7l8ynRWCh0UU=";
};
nativeBuildInputs = [
cmake
php
wrapQtAppsHook
];
buildInputs = [
hidapi
libusb1
procps
qtbase
qtsvg
qttools
yaml-cpp
];
postPatch = ''
sed -i 's|/usr|${placeholder "out"}|' cmake/Installing.cmake
'';
meta = {
description = "Debug interface for AVR-based embedded systems development on GNU/Linux";
homepage = "https://bloom.oscillate.io/";
license = lib.licenses.lgpl3Only;
maintainers = with lib.maintainers; [ eclairevoyant ];
mainProgram = "bloom";
platforms = lib.platforms.linux;
};
}

View File

@ -364,6 +364,8 @@ with pkgs;
blst = callPackage ../development/libraries/blst { };
bloom = qt6Packages.callPackage ../development/tools/bloom { };
bloodhound-py = callPackage ../tools/security/bloodhound-py { };
bodyclose = callPackage ../development/tools/bodyclose { };