powerdns: fix typo

Co-authored-by: Guillaume Girol <symphorien@users.noreply.github.com>
This commit is contained in:
Vladimír Čunát 2022-04-03 18:41:21 +02:00 committed by GitHub
parent f588040472
commit 6b7bd8d06e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
];
# Configure phase requires 64-bit time_t even on 32-bit platforms.
NIX_CFLAGS_COMPILE = lib.optionals stdenv.hostPlaftorm.is32bit [
NIX_CFLAGS_COMPILE = lib.optionals stdenv.hostPlatform.is32bit [
"-D_TIME_BITS=64" "-D_FILE_OFFSET_BITS=64"
];