blob: 640ffeef7588081d809c530fd04d7055290e62a8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
{ stdenv, fetchurl
, glade
, gnunet
, gnutls
, gtk3
, libextractor
, libgcrypt
, libsodium
, libxml2
, pkg-config
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
pname = "gnunet-gtk";
version = "0.21.0";
src = fetchurl {
url = "mirror://gnu/gnunet/gnunet-gtk-${version}.tar.gz";
hash = "sha256-vQFtKFI57YG64WpKVngx1kq687hI+f1kpP9ooK53/aw=";
};
nativeBuildInputs= [
pkg-config
wrapGAppsHook
];
buildInputs = [
glade
gnunet
gnutls
gtk3
libextractor
libgcrypt
libsodium
libxml2
];
configureFlags = [ "--with-gnunet=${gnunet}" ];
postPatch = "patchShebangs pixmaps/icon-theme-installer";
postInstall = ''
ln -s $out/share/gnunet-gtk/gnunet_logo.png $out/share/gnunet/gnunet-logo-color.png
'';
meta = gnunet.meta // {
description = "GNUnet GTK User Interface";
homepage = "https://git.gnunet.org/gnunet-gtk.git";
};
}
|