801e8b4d72
Switch the order in which the version-specific attributes are combined with args. Otherwise, if args such as 'branch' are overridden by an overlay or other derivation, the new value is replaced with the original when the sets are combined with //.
13 lines
281 B
Nix
13 lines
281 B
Nix
{ stdenv, callPackage, fetchpatch
|
|
# Darwin frameworks
|
|
, Cocoa, CoreMedia
|
|
, ...
|
|
}@args:
|
|
|
|
callPackage ./generic.nix (rec {
|
|
version = branch;
|
|
branch = "3.4.6";
|
|
sha256 = "1s20wzgxxrm56gckyb8cf1lh36hdnkdxvmmnnvdxvia4zb3grf1b";
|
|
darwinFrameworks = [ Cocoa CoreMedia ];
|
|
} // args)
|