mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
olm: *Flags are lists
This commit is contained in:
parent
5117f77246
commit
81548bf7da
@ -15,9 +15,11 @@ stdenv.mkDerivation rec {
|
||||
# requires optimisation but memory operations are compiled with -O0
|
||||
hardeningDisable = ["fortify"];
|
||||
|
||||
makeFlags = if stdenv.cc.isClang then [ "CC=cc" ] else null;
|
||||
makeFlags = stdenv.lib.optional stdenv.cc.isClang "CC=cc";
|
||||
|
||||
installFlags = "PREFIX=$(out)";
|
||||
installFlags = [
|
||||
"PREFIX=${placeholder ''out''}"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Implements double cryptographic ratchet and Megolm ratchet";
|
||||
|
Loading…
Reference in New Issue
Block a user