3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/p2p/gnunet/gtk.nix

48 lines
794 B
Nix
Raw Normal View History

2020-08-04 23:50:23 +01:00
{ stdenv, fetchurl
, glade
2020-08-04 23:50:23 +01:00
, gnunet
, gnutls
, gtk3
, libextractor
, libgcrypt
, libsodium
2020-08-04 23:50:23 +01:00
, libxml2
, pkg-config
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
pname = "gnunet-gtk";
version = "0.14.0";
2020-08-04 23:50:23 +01:00
src = fetchurl {
url = "mirror://gnu/gnunet/${pname}-${version}.tar.gz";
sha256 = "18rc7mb45y17d5nrlpf2p4ixp7ir67gcgjf4hlj4r95ic5zi54wa";
};
2020-08-04 23:50:23 +01:00
nativeBuildInputs= [
pkg-config
wrapGAppsHook
];
buildInputs = [
glade
2020-08-04 23:50:23 +01:00
gnunet
gnutls
gtk3
libextractor
libgcrypt
libsodium
2020-08-04 23:50:23 +01:00
libxml2
];
configureFlags = [ "--with-gnunet=${gnunet}" ];
patchPhase = "patchShebangs pixmaps/icon-theme-installer";
2020-08-04 23:50:23 +01:00
meta = gnunet.meta // {
description = "GNUnet GTK User Interface";
homepage = "https://git.gnunet.org/gnunet-gtk.git";
};
}