mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
11 lines
231 B
Nix
11 lines
231 B
Nix
{ mkDerivation }:
|
|
|
|
mkDerivation rec {
|
|
version = "21.0";
|
|
sha256 = "0khprgawmbdpn9b8jw2kksmvs6b45mibpjralsc0ggxym1397vm8";
|
|
|
|
prePatch = ''
|
|
substituteInPlace configure.in --replace '`sw_vers -productVersion`' '10.10'
|
|
'';
|
|
}
|