flipperzero-firmware: RM0607-1257-0.102.4-a313d17 -> RM0914-1058-0.104.1-60485ac
This commit is contained in:
parent
7306d378bb
commit
5dca899b3a
2 changed files with 49 additions and 7 deletions
|
@ -1,5 +1,6 @@
|
|||
{ depot
|
||||
, pkgs ? import <nixpkgs> {}
|
||||
, lib ? pkgs.lib
|
||||
, ... }:
|
||||
|
||||
let
|
||||
|
@ -28,6 +29,45 @@ let
|
|||
sha256 = "sha256:1czswx1fj2j48rspkrvarkr43k0vii9rsmz054c9yby1dq362fgr";
|
||||
};
|
||||
});
|
||||
oslex = pm: pm.buildPythonPackage rec {
|
||||
pname = "oslex";
|
||||
version = "0.1.3";
|
||||
pyproject = true;
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "petamas";
|
||||
repo = "oslex";
|
||||
rev = "release/v${version}";
|
||||
hash = "sha256-OcmBtxGS1Cq2kEcxF0Il62LUGbAAcG4lieokr/nK2/4=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with pm; [
|
||||
hatchling
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
pythonRemoveDeps = true;
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace --replace-fail pyproject.toml \
|
||||
'"mslex",' ""
|
||||
'';
|
||||
};
|
||||
cxxheaderparser = pm: pm.buildPythonPackage rec {
|
||||
pname = "cxxheaderparser";
|
||||
version = "1.3.4";
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "robotpy";
|
||||
repo = "cxxheaderparser";
|
||||
rev = version;
|
||||
hash = "sha256-Cyo+18mH1p5Zy4dWP3mjZRIkZZOyb61ABedk/amDi0g=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
echo '__version__ = "${version}"' > cxxheaderparser/version.py
|
||||
'';
|
||||
};
|
||||
python-with-deps = pkgs.python3.withPackages (pm: with pm; [
|
||||
pillow
|
||||
(heatshrink2 pm)
|
||||
|
@ -36,6 +76,8 @@ let
|
|||
pyserial
|
||||
protobuf
|
||||
(pm.toPythonModule scons)
|
||||
(oslex pm)
|
||||
(cxxheaderparser pm)
|
||||
ansi
|
||||
colorlog
|
||||
pyelftools
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
{
|
||||
"src": {
|
||||
"url": "https://github.com/RogueMaster/flipperzero-firmware-wPlugins",
|
||||
"rev": "a313d175d5536da553ff6f9bb1ae3a3098508f8e",
|
||||
"date": "2024-06-07T12:50:27-04:00",
|
||||
"path": "/nix/store/dryz4iy2fjdks0iml6s4w23366jqk3gk-flipperzero-firmware-wPlugins-a313d17",
|
||||
"sha256": "19i7n7s931l1ndsbdzawc45ri0g6rz6g1n2h11x3c5r54100pccl",
|
||||
"hash": "sha256-lLELQCAlFzZ6CFDY8MzP5oGYC2Fc/bZ0s4GGkfSxJ6Y=",
|
||||
"rev": "60485ac996da9c812b08b3be9850a133ec66ef74",
|
||||
"date": "2024-09-14T10:57:55-04:00",
|
||||
"path": "/nix/store/hn90pqfhhj54zdz2nb6cdp8c86z4181j-flipperzero-firmware-wPlugins-60485ac",
|
||||
"sha256": "0yzhic9j549sncs706qhkx74q4d2b91kzc7iri52lgi1vc8j9ql0",
|
||||
"hash": "sha256-gOIkEdshPipKzPGwP0NaohFMTp8QG3A0szqRIhOL8Hs=",
|
||||
"fetchLFS": false,
|
||||
"fetchSubmodules": true,
|
||||
"deepClone": false,
|
||||
"leaveDotGit": false
|
||||
},
|
||||
"version": "RM0607-1257-0.102.4-a313d17",
|
||||
"upstreamVersion": "0.102.4"
|
||||
"version": "RM0914-1058-0.104.1-60485ac",
|
||||
"upstreamVersion": "0.104.1"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue