applications/networking/remote/freerdp: Updated to 1.0.0.
svn path=/nixpkgs/trunk/; revision=31620
This commit is contained in:
parent
bbe40d00f4
commit
6b174cfb82
@ -1,29 +1,36 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, fetchurl
|
, fetchurl
|
||||||
|
, cmake
|
||||||
, openssl
|
, openssl
|
||||||
, printerSupport ? true, cups
|
, printerSupport ? true, cups
|
||||||
, pkgconfig
|
, pkgconfig
|
||||||
, zlib
|
, zlib
|
||||||
, libX11
|
, libX11
|
||||||
, libXcursor
|
, libXcursor
|
||||||
|
, libXdamage
|
||||||
|
, libXext
|
||||||
, alsaLib
|
, alsaLib
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert printerSupport -> cups != null;
|
assert printerSupport -> cups != null;
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "freerdp-0.8.2";
|
name = "freerdp-${version}";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/freerdp/${name}.tar.gz";
|
url = "https://github.com/downloads/FreeRDP/FreeRDP/FreeRDP-${version}.tar.gz";
|
||||||
sha256 = "1q9hhwyc4hk49hsmd2kghrfsawxcc7gy7vcmhdf91l8v95xp16iq";
|
sha256 = "1h7b2ykgsp1b04p67syb3p2xgpsb45i6zl1jvm09h0dr5an85awd";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
cmake
|
||||||
openssl
|
openssl
|
||||||
pkgconfig
|
pkgconfig
|
||||||
zlib
|
zlib
|
||||||
libX11
|
libX11
|
||||||
libXcursor
|
libXcursor
|
||||||
|
libXdamage
|
||||||
|
libXext
|
||||||
alsaLib
|
alsaLib
|
||||||
] ++ stdenv.lib.optional printerSupport cups;
|
] ++ stdenv.lib.optional printerSupport cups;
|
||||||
|
|
||||||
@ -46,4 +53,3 @@ stdenv.mkDerivation rec {
|
|||||||
maintainers = [ stdenv.lib.maintainers.shlevy ];
|
maintainers = [ stdenv.lib.maintainers.shlevy ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user