c3dff03d1a
svn path=/nixpkgs/trunk/; revision=29071
50 lines
972 B
Nix
50 lines
972 B
Nix
{ stdenv
|
|
, fetchurl
|
|
, openssl
|
|
, printerSupport ? true, cups
|
|
, pkgconfig
|
|
, zlib
|
|
, libX11
|
|
, libXcursor
|
|
, alsaLib
|
|
}:
|
|
|
|
assert printerSupport -> cups != null;
|
|
stdenv.mkDerivation rec {
|
|
name = "freerdp-0.8.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/freerdp/${name}.tar.gz";
|
|
sha256 = "1q9hhwyc4hk49hsmd2kghrfsawxcc7gy7vcmhdf91l8v95xp16iq";
|
|
};
|
|
|
|
buildInputs = [
|
|
openssl
|
|
pkgconfig
|
|
zlib
|
|
libX11
|
|
libXcursor
|
|
alsaLib
|
|
] ++ stdenv.lib.optional printerSupport cups;
|
|
|
|
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 ];
|
|
};
|
|
}
|
|
|