gtk-gnutella: 1.1.9 -> 1.1.14 (#62151)
and fix build -- previously failing on Hydra
This commit is contained in:
parent
bd64cb2b43
commit
02781acc38
@ -1,29 +1,51 @@
|
||||
{ stdenv, fetchurl, bison, pkgconfig
|
||||
, glib, gtk2, libxml2, gettext, zlib, binutils, gnutls }:
|
||||
{ stdenv, fetchurl, fetchpatch, bison, pkgconfig, gettext, desktop-file-utils
|
||||
, glib, gtk2, libxml2, libbfd, zlib, binutils, gnutls
|
||||
}:
|
||||
|
||||
let
|
||||
name = "gtk-gnutella";
|
||||
version = "1.1.9";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "${name}-${version}";
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gtk-gnutella";
|
||||
version = "1.1.14";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/${name}/${name}-${version}.tar.bz2";
|
||||
sha256 = "1zvadgsskmpm82id9mbj24a2lyq38qv768ixv7nmfjl3d4wr2biv";
|
||||
url = "mirror://sourceforge/${pname}/${version}/${pname}-${version}.tar.xz";
|
||||
sha256 = "0sljjha4anfz1r1xq1c6qnnkjv62ld56p7xgj4bsi6lqmq1azvii";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ bison gettext pkgconfig ];
|
||||
buildInputs = [ binutils glib gnutls gtk2 libxml2 zlib ];
|
||||
patches = [
|
||||
(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" ];
|
||||
|
||||
configureScript = "./build.sh --configure-only";
|
||||
enableParallelBuilding = true;
|
||||
|
||||
postInstall = ''
|
||||
install -Dm0444 src/${pname}.man $out/share/man/man1/${pname}.1
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://gtk-gnutella.sourceforge.net/;
|
||||
description = "Server/client for Gnutella";
|
||||
license = licenses.gpl2;
|
||||
description = "A GTK+ Gnutella client, optimized for speed and scalability";
|
||||
homepage = "http://gtk-gnutella.sourceforge.net/"; # Code: https://github.com/gtk-gnutella/gtk-gnutella
|
||||
changelog = "https://raw.githubusercontent.com/gtk-gnutella/gtk-gnutella/v${version}/ChangeLog";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user