diff --git a/pkgs/applications/networking/remote/freerdp/default.nix b/pkgs/applications/networking/remote/freerdp/default.nix index 51a1b5ae0e02..8d80630f316d 100644 --- a/pkgs/applications/networking/remote/freerdp/default.nix +++ b/pkgs/applications/networking/remote/freerdp/default.nix @@ -30,5 +30,20 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-x" ] ++ stdenv.lib.optional printerSupport "--with-printer=cups"; + + meta = { + description = "A Remote Desktop Protocol Client"; + + longDescription = '' + FreeRDP is a client-side implementation of the Remote Desktop Protocol (RDP) + following the Microsoft Open Specifications. + ''; + + homepage = http://www.freerdp.com/; + + license = "free-non-copyleft"; + + maintainers = [ stdenv.lib.maintainers.shlevy ]; + }; }