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