* added rdesktop
svn path=/nixpkgs/trunk/; revision=10304
This commit is contained in:
parent
746d65bbdb
commit
3479c907ab
20
pkgs/applications/networking/remote/rdesktop/default.nix
Normal file
20
pkgs/applications/networking/remote/rdesktop/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{stdenv, fetchurl, openssl, libX11} :
|
||||||
|
|
||||||
|
stdenv.mkDerivation (rec {
|
||||||
|
pname = "rdesktop";
|
||||||
|
version = "1.5.0";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/${pname}/${name}.tar.gz";
|
||||||
|
sha256 = "5ead17c3d29cb1028aeca485ee7a8c65694c1b02a1b7014c3da920b265a438aa";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [openssl libX11];
|
||||||
|
|
||||||
|
configureFlags = [ "--with-openssl=${openssl}" ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "rdesktop is an open source client for Windows Terminal Services";
|
||||||
|
};
|
||||||
|
})
|
@ -4572,6 +4572,11 @@ rec {
|
|||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
rdesktop = import ../applications/networking/remote/rdesktop {
|
||||||
|
inherit fetchurl stdenv openssl;
|
||||||
|
inherit (xlibs) libX11;
|
||||||
|
};
|
||||||
|
|
||||||
RealPlayer = import ../applications/video/RealPlayer {
|
RealPlayer = import ../applications/video/RealPlayer {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
inherit (gtkLibs) glib pango atk gtk;
|
inherit (gtkLibs) glib pango atk gtk;
|
||||||
|
Loading…
Reference in New Issue
Block a user