mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-22 01:11:02 +03:00
13 lines
330 B
Nix
13 lines
330 B
Nix
![]() |
{ lib }:
|
||
|
|
||
|
{
|
||
|
genFinalPackage = pkg: args:
|
||
|
let
|
||
|
expectedArgs = with lib;
|
||
|
lib.naturalSort (lib.attrNames args);
|
||
|
existingArgs = with lib;
|
||
|
naturalSort (intersectLists expectedArgs (attrNames (functionArgs pkg.override)));
|
||
|
in
|
||
|
if existingArgs != expectedArgs then pkg else pkg.override args;
|
||
|
}
|