1
0
Fork 0

export symfony cli

This commit is contained in:
Lukas Wurzinger 2025-04-11 14:24:41 +02:00
parent a0e1acec0e
commit be9fb9278e
No known key found for this signature in database
3 changed files with 100 additions and 22 deletions

View file

@ -70,10 +70,16 @@
];
};
packages = lib.packagesFromDirectoryRecursive {
inherit (pkgs) callPackage;
directory = ./packages;
};
packages =
lib.packagesFromDirectoryRecursive {
inherit (pkgs) callPackage;
directory = ./packages;
}
// {
symfony-cli = pkgs.callPackage ./symfony-cli/package.nix {
fossarPhps = inputs'.phps.packages;
};
};
};
};
}