mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:59:25 +00:00
11 lines
243 B
Nix
11 lines
243 B
Nix
{ mkDerivation, fetchurl }:
|
|
|
|
mkDerivation rec {
|
|
version = "20.2.2";
|
|
sha256 = "1cns1qcmmr00nyvcvcj4p4n2gvliyjynlwfqc7qzpkjjnkb7fzl6";
|
|
|
|
prePatch = ''
|
|
substituteInPlace configure.in --replace '`sw_vers -productVersion`' '10.10'
|
|
'';
|
|
}
|