nxproxy: switch to release 3.5.0.30 instead of git

This commit is contained in:
Tobias Geerinckx-Rice 2015-03-17 00:36:02 +01:00
parent af15b26ee8
commit 3a73e3bf92

View file

@ -1,18 +1,17 @@
{ stdenv, fetchgit, autoconf, libxcomp }:
{ stdenv, fetchurl, autoconf, libxcomp }:
let version = "3.5.0-2015-02-18"; in
let version = "3.5.0.30"; in
stdenv.mkDerivation {
name = "nxproxy-${version}";
src = fetchgit {
url = git://code.x2go.org/nx-libs.git;
rev = "2b2a02f93f552a38de8f72a971fa3f3ff42b3298";
sha256 = "11n7dv1cn9icjgyxmsbac115vmbaar47cmp8k76vd516f2x41dw9";
src = fetchurl {
url = "http://code.x2go.org/releases/source/nx-libs/nx-libs-${version}-full.tar.gz";
sha256 = "0npwlfv9p5fwnf30fpkfw08mq11pgbvp3d2zgnhh8ykf3yj8dgv0";
};
meta = with stdenv.lib; {
description = "NX compression proxy";
homepage = "http://code.x2go.org/gitweb?p=nx-libs.git;a=summary";
homepage = "http://wiki.x2go.org/doku.php/wiki:libs:nx-libs";
license = with licenses; gpl2;
platforms = with platforms; linux;
maintainers = with maintainers; [ nckx ];
@ -25,5 +24,5 @@ stdenv.mkDerivation {
autoconf
'';
installTargets = [ "install.bin" ];
makeFlags = [ "exec_prefix=$(out)" ];
}