mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
pidgin: add checks (see parent commit, too)
This commit is contained in:
parent
b4946f56ae
commit
f3c739f479
@ -74,6 +74,15 @@ let unwrapped = stdenv.mkDerivation rec {
|
||||
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
|
||||
'';
|
||||
|
||||
doInstallCheck = stdenv.hostPlatform == stdenv.buildPlatform;
|
||||
# In particular, this detects missing python imports in some of the tools.
|
||||
postInstallCheck = ''
|
||||
for f in "''${!outputBin}"/bin/{purple-remote,pidgin}; do
|
||||
echo "Testing: $f --help"
|
||||
"$f" --help
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Multi-protocol instant messaging client";
|
||||
homepage = "http://pidgin.im";
|
||||
|
Loading…
Reference in New Issue
Block a user