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 { stdenv.mkDerivation {
name = "nxproxy-${version}"; name = "nxproxy-${version}";
src = fetchgit { src = fetchurl {
url = git://code.x2go.org/nx-libs.git; url = "http://code.x2go.org/releases/source/nx-libs/nx-libs-${version}-full.tar.gz";
rev = "2b2a02f93f552a38de8f72a971fa3f3ff42b3298"; sha256 = "0npwlfv9p5fwnf30fpkfw08mq11pgbvp3d2zgnhh8ykf3yj8dgv0";
sha256 = "11n7dv1cn9icjgyxmsbac115vmbaar47cmp8k76vd516f2x41dw9";
}; };
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "NX compression proxy"; 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; license = with licenses; gpl2;
platforms = with platforms; linux; platforms = with platforms; linux;
maintainers = with maintainers; [ nckx ]; maintainers = with maintainers; [ nckx ];
@ -25,5 +24,5 @@ stdenv.mkDerivation {
autoconf autoconf
''; '';
installTargets = [ "install.bin" ]; makeFlags = [ "exec_prefix=$(out)" ];
} }