forked from mirrors/nixpkgs
76d733bf2c
gnunet: 0.14.0 -> 0.14.1 gnunet-gtk: 0.13.1 -> 0.14.0 (there is no 0.14.1 release) build with correct `gnunet` location. otherwise `gnunet-setup` will not pick up plugins. See: https://git.gnunet.org/gnunet-gtk.git/tree/README?id=5034ca084258d6653b2986b00167c736a9cd93ed#n19 add libsodium to pass configure check for GNUnet util library.
48 lines
794 B
Nix
48 lines
794 B
Nix
{ stdenv, fetchurl
|
|
, glade
|
|
, gnunet
|
|
, gnutls
|
|
, gtk3
|
|
, libextractor
|
|
, libgcrypt
|
|
, libsodium
|
|
, libxml2
|
|
, pkg-config
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnunet-gtk";
|
|
version = "0.14.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/gnunet/${pname}-${version}.tar.gz";
|
|
sha256 = "18rc7mb45y17d5nrlpf2p4ixp7ir67gcgjf4hlj4r95ic5zi54wa";
|
|
};
|
|
|
|
nativeBuildInputs= [
|
|
pkg-config
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
glade
|
|
gnunet
|
|
gnutls
|
|
gtk3
|
|
libextractor
|
|
libgcrypt
|
|
libsodium
|
|
libxml2
|
|
];
|
|
|
|
configureFlags = [ "--with-gnunet=${gnunet}" ];
|
|
|
|
patchPhase = "patchShebangs pixmaps/icon-theme-installer";
|
|
|
|
meta = gnunet.meta // {
|
|
description = "GNUnet GTK User Interface";
|
|
homepage = "https://git.gnunet.org/gnunet-gtk.git";
|
|
};
|
|
}
|