mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 00:54:46 +00:00
11 lines
233 B
Nix
11 lines
233 B
Nix
{ mkDerivation }:
|
|
|
|
mkDerivation rec {
|
|
version = "21.1.3";
|
|
sha256 = "0374qpafrpnfspsvjaa3sgs0h8ryi3ah8fvmr7dm7zsmgb4ihdsg";
|
|
|
|
prePatch = ''
|
|
substituteInPlace configure.in --replace '`sw_vers -productVersion`' '10.10'
|
|
'';
|
|
}
|