From c3dff03d1a8a9b6b6c292dd0c42c8b38bef0e5fb Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Wed, 7 Sep 2011 03:42:23 +0000 Subject: [PATCH] freerdp: Add meta information svn path=/nixpkgs/trunk/; revision=29071 --- .../networking/remote/freerdp/default.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/pkgs/applications/networking/remote/freerdp/default.nix b/pkgs/applications/networking/remote/freerdp/default.nix index 51a1b5ae0e0..8d80630f316 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 ]; + }; }