mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00: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;
|
|
}
|