mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 11:13:30 +00:00
44b450592c
security release, fixing issue with as-yet-unassigned CVE. debian are using DSA-4473-1/DLA-1837-1. switching to github source because they don't seem to be keeping their sourceforge tarballs up to date
34 lines
938 B
Nix
34 lines
938 B
Nix
{stdenv, fetchFromGitHub, openssl, libX11, libgssglue, pkgconfig, autoreconfHook
|
|
, enableCredssp ? (!stdenv.isDarwin)
|
|
} :
|
|
|
|
stdenv.mkDerivation (rec {
|
|
pname = "rdesktop";
|
|
version = "1.8.6";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "02sbhnqbasa54c75c86qw9w9h9sxxbnldj7bjv2gvn18lmq5rm20";
|
|
};
|
|
|
|
nativeBuildInputs = [pkgconfig autoreconfHook];
|
|
buildInputs = [openssl libX11]
|
|
++ stdenv.lib.optional enableCredssp libgssglue;
|
|
|
|
configureFlags = [
|
|
"--with-ipv6"
|
|
"--with-openssl=${openssl.dev}"
|
|
"--disable-smartcard"
|
|
] ++ stdenv.lib.optional (!enableCredssp) "--disable-credssp";
|
|
|
|
meta = {
|
|
description = "Open source client for Windows Terminal Services";
|
|
homepage = http://www.rdesktop.org/;
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
})
|