bloom: init at 1.0.0
This commit is contained in:
parent
a9d001fd4a
commit
0ef5d06920
2 changed files with 57 additions and 0 deletions
55
pkgs/development/tools/bloom/default.nix
Normal file
55
pkgs/development/tools/bloom/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue