mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 10:12:58 +00:00
gnunet-gtk: 0.12.0 -> 0.13.1
This commit is contained in:
parent
3d31c28ced
commit
779e358780
@ -1,28 +1,43 @@
|
|||||||
{ stdenv, fetchgit, pkgconfig
|
{ stdenv, fetchurl
|
||||||
, autoreconfHook, wrapGAppsHook
|
, gnome3
|
||||||
, libgcrypt, libextractor, libxml2
|
, gnunet
|
||||||
, gnome3, gnunet, gnutls, gtk3 }:
|
, gnutls
|
||||||
|
, gtk3
|
||||||
|
, libextractor
|
||||||
|
, libgcrypt
|
||||||
|
, libxml2
|
||||||
|
, pkg-config
|
||||||
|
, wrapGAppsHook
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gnunet-gtk";
|
pname = "gnunet-gtk";
|
||||||
version = "0.12.0";
|
inherit (gnunet) version;
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchurl {
|
||||||
url = "https://git.gnunet.org/gnunet-gtk.git";
|
url = "mirror://gnu/gnunet/${pname}-${version}.tar.gz";
|
||||||
rev = "v${version}";
|
sha256 = "1zdzgq16h77w6ybwg3lqjsjr965np6iqvncqvkbj07glqd4wss0j";
|
||||||
sha256 = "1ccasng1b4bj0kqhbfhiv0j1gnc4v2ka5f7wxvka3iwp90g7rax6";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs= [ autoreconfHook wrapGAppsHook pkgconfig ];
|
nativeBuildInputs= [
|
||||||
buildInputs = [ libgcrypt libextractor libxml2 gnunet gnome3.glade gnutls gtk3 ];
|
pkg-config
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gnome3.glade
|
||||||
|
gnunet
|
||||||
|
gnutls
|
||||||
|
gtk3
|
||||||
|
libextractor
|
||||||
|
libgcrypt
|
||||||
|
libxml2
|
||||||
|
];
|
||||||
|
|
||||||
patchPhase = "patchShebangs pixmaps/icon-theme-installer";
|
patchPhase = "patchShebangs pixmaps/icon-theme-installer";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = gnunet.meta // {
|
||||||
description = "GNUnet GTK User Interface";
|
description = "GNUnet GTK User Interface";
|
||||||
homepage = "https://git.gnunet.org/gnunet-gtk.git";
|
homepage = "https://git.gnunet.org/gnunet-gtk.git";
|
||||||
license = licenses.gpl3Plus;
|
|
||||||
maintainers = with maintainers; [ pstn ];
|
|
||||||
platforms = platforms.gnu ++ platforms.linux;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user