kerberos: move user binaries to default output

The intention of the previous change was to move krb5-config to .dev (it
gives the locations of headers), but it grabbed all of the user-facing
binaries too. This puts them back.
This commit is contained in:
Kai Wohlfahrt 2018-03-01 09:20:51 +00:00 committed by Kai Wohlfahrt
parent d752677b1b
commit ade842f51a
2 changed files with 1 additions and 2 deletions

View File

@ -21,7 +21,6 @@ import ../make-test.nix ({pkgs, ...}: {
}; };
}; };
users.extraUsers.alice = { isNormalUser = true; }; users.extraUsers.alice = { isNormalUser = true; };
environment.systemPackages = [ pkgs.krb5Full.dev ];
}; };
testScript = '' testScript = ''

View File

@ -65,7 +65,7 @@ stdenv.mkDerivation rec {
# not via outputBin, due to reference from libkrb5.so # not via outputBin, due to reference from libkrb5.so
postInstall = '' postInstall = ''
moveToOutput bin "$dev" moveToOutput bin/krb5-config "$dev"
''; '';
enableParallelBuilding = true; enableParallelBuilding = true;