fix(packages): correct pname typo, add missing category, add sed warning, fix indent
- graphify: fix pname typo graphifyy -> graphify - container-use: add missing passthru.category - radar: add brittleness warning on postPatch sed block - freebuff: fix extractNpmPkg indentation
This commit is contained in:
@@ -34,6 +34,7 @@ buildGoModule rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
|
category = "AI Coding Agents";
|
||||||
updateScript = [
|
updateScript = [
|
||||||
"nix-update"
|
"nix-update"
|
||||||
"--flake"
|
"--flake"
|
||||||
|
|||||||
@@ -59,7 +59,10 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
src = freebuffSrc;
|
src = freebuffSrc;
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper patchelf ];
|
nativeBuildInputs = [
|
||||||
|
makeWrapper
|
||||||
|
patchelf
|
||||||
|
];
|
||||||
|
|
||||||
dontStrip = true;
|
dontStrip = true;
|
||||||
dontPatchelf = true;
|
dontPatchelf = true;
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "graphifyy";
|
pname = "graphify";
|
||||||
version = "0.7.10";
|
version = "0.7.10";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
|
|||||||
@@ -25,6 +25,9 @@ let
|
|||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
# Fix missing resolved URLs for packages under web/node_modules/
|
# Fix missing resolved URLs for packages under web/node_modules/
|
||||||
|
# WARNING: This sed is version-specific — if upstream bumps a
|
||||||
|
# transitive dep version, the patterns silently fail and the
|
||||||
|
# build breaks. Update resolved/integrity values when bumping radar.
|
||||||
# that are actually external npm packages (not workspace links).
|
# that are actually external npm packages (not workspace links).
|
||||||
# Insert "resolved" and "integrity" after the "version" field
|
# Insert "resolved" and "integrity" after the "version" field
|
||||||
# for each affected package using sed.
|
# for each affected package using sed.
|
||||||
|
|||||||
Reference in New Issue
Block a user