treewide: installTargets is a list

This commit is contained in:
Robin Gloster
2019-12-30 13:29:27 +01:00
committed by Jan Tojnar
parent 2157dcd141
commit 65395a7105
23 changed files with 25 additions and 27 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
# To omit the hostnqn and hostid files that are impure and should be unique
# for each target host:
installTargets = "install-spec";
installTargets = [ "install-spec" ];
meta = with lib; {
inherit (src.meta) homepage;
+1 -1
View File
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ dbus libcap ];
NIX_LDFLAGS = [ "-lrt" ];
NIX_LDFLAGS = "-lrt";
meta = with stdenv.lib; {
homepage = http://0pointer.de/blog/projects/rtkit;