mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-09 16:18:34 +01:00
14 lines
322 B
Nix
14 lines
322 B
Nix
{ lib }:
|
|
|
|
{
|
|
genFinalPackage =
|
|
pkg: args:
|
|
let
|
|
expectedArgs = 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;
|
|
}
|