gtk-gnutella: 1.1.9 -> 1.1.14 (#62151)
and fix build -- previously failing on Hydra
This commit is contained in:
@@ -1,29 +1,51 @@
|
|||||||
{ stdenv, fetchurl, bison, pkgconfig
|
{ stdenv, fetchurl, fetchpatch, bison, pkgconfig, gettext, desktop-file-utils
|
||||||
, glib, gtk2, libxml2, gettext, zlib, binutils, gnutls }:
|
, glib, gtk2, libxml2, libbfd, zlib, binutils, gnutls
|
||||||
|
}:
|
||||||
|
|
||||||
let
|
stdenv.mkDerivation rec {
|
||||||
name = "gtk-gnutella";
|
pname = "gtk-gnutella";
|
||||||
version = "1.1.9";
|
version = "1.1.14";
|
||||||
in
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "${name}-${version}";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/${name}/${name}-${version}.tar.bz2";
|
url = "mirror://sourceforge/${pname}/${version}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "1zvadgsskmpm82id9mbj24a2lyq38qv768ixv7nmfjl3d4wr2biv";
|
sha256 = "0sljjha4anfz1r1xq1c6qnnkjv62ld56p7xgj4bsi6lqmq1azvii";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ bison gettext pkgconfig ];
|
patches = [
|
||||||
buildInputs = [ binutils glib gnutls gtk2 libxml2 zlib ];
|
(fetchpatch {
|
||||||
|
# Avoid namespace conflict with glibc 2.28 'statx' struct / remove after v1.1.14
|
||||||
|
url = "https://github.com/gtk-gnutella/gtk-gnutella/commit/e4205a082eb32161e28de81f5cba8095eea8ecc7.patch";
|
||||||
|
sha256 = "0ffkw2cw2b2yhydii8jm40vd40p4xl224l8jvhimg02lgs3zfbca";
|
||||||
|
})
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://src.fedoraproject.org/rpms/gtk-gnutella/raw/f30/f/gtk-gnutella-1.1.14-endian.patch";
|
||||||
|
sha256 = "19q4lq8msknfz4mkbjdqmmgld16p30j2yx371p8spmr19q5i0sfn";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace Makefile.SH --replace "@exit 0" "@echo done"
|
||||||
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [ bison desktop-file-utils gettext pkgconfig ];
|
||||||
|
buildInputs = [ binutils glib gnutls gtk2 libbfd libxml2 zlib ];
|
||||||
|
|
||||||
|
configureScript = "./build.sh";
|
||||||
|
configureFlags = [ "--configure-only" ];
|
||||||
|
|
||||||
hardeningDisable = [ "bindnow" "fortify" "pic" "relro" ];
|
hardeningDisable = [ "bindnow" "fortify" "pic" "relro" ];
|
||||||
|
|
||||||
configureScript = "./build.sh --configure-only";
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
install -Dm0444 src/${pname}.man $out/share/man/man1/${pname}.1
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://gtk-gnutella.sourceforge.net/;
|
description = "A GTK+ Gnutella client, optimized for speed and scalability";
|
||||||
description = "Server/client for Gnutella";
|
homepage = "http://gtk-gnutella.sourceforge.net/"; # Code: https://github.com/gtk-gnutella/gtk-gnutella
|
||||||
license = licenses.gpl2;
|
changelog = "https://raw.githubusercontent.com/gtk-gnutella/gtk-gnutella/v${version}/ChangeLog";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user