polkit: split dev and bin outputs

+4 -2
+1 -1
nixos/modules/security/polkit.nix
··· 90 90 owner = "root"; 91 91 group = "root"; 92 92 setuid = true; 93 - source = "${pkgs.polkit}/lib/polkit-1/polkit-agent-helper-1"; 93 + source = "${pkgs.polkit.out}/lib/polkit-1/polkit-agent-helper-1"; 94 94 } 95 95 ]; 96 96
+2
pkgs/development/libraries/polkit/default.nix
··· 22 22 sha256 = "109w86kfqrgz83g9ivggplmgc77rz8kx8646izvm2jb57h4rbh71"; 23 23 }; 24 24 25 + outputs = [ "dev" "out" "bin" ]; # small man pages in $bin 26 + 25 27 buildInputs = 26 28 [ pkgconfig glib expat pam intltool spidermonkey gobjectIntrospection ] 27 29 ++ [ libxslt docbook_xsl docbook_xml_dtd_412 ] # man pages
+1 -1
pkgs/os-specific/linux/systemd/default.nix
··· 118 118 PYTHON_BINARY = "${coreutils}/bin/env python"; # don't want a build time dependency on Python 119 119 120 120 NIX_CFLAGS_COMPILE = 121 - [ # Can't say ${polkit}/bin/pkttyagent here because that would 121 + [ # Can't say ${polkit.bin}/bin/pkttyagent here because that would 122 122 # lead to a cyclic dependency. 123 123 "-UPOLKIT_AGENT_BINARY_PATH" "-DPOLKIT_AGENT_BINARY_PATH=\"/run/current-system/sw/bin/pkttyagent\"" 124 124 "-fno-stack-protector"