Add intelij idea community. Formatting in packages and fixes after update to 26.05

This commit is contained in:
2026-06-11 22:25:21 +02:00
parent ba3310fb53
commit cdfb9779d5
14 changed files with 309 additions and 166 deletions
+12 -7
View File
@@ -1,13 +1,19 @@
{ stdenv, python3, fetchFromGitHub, lib}:
stdenv.mkDerivation
rec {
{
stdenv,
python3,
fetchFromGitHub,
lib,
}:
stdenv.mkDerivation rec {
pname = "lh2ctrl";
version = "1.1.0";
propagatedBuildInputs = [
(python3.withPackages (pythonPackages: with pythonPackages; [
bluepy
]))
(python3.withPackages (
pythonPackages: with pythonPackages; [
bluepy
]
))
];
src = fetchFromGitHub {
@@ -26,4 +32,3 @@ stdenv.mkDerivation
platforms = platforms.linux;
};
}