nixpkgs/pkgs/applications/networking/p2p/gnunet/gtk.nix

48 lines
793 B
Nix
Raw Normal View History

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