50 lines
894 B
Nix
50 lines
894 B
Nix
{ stdenv
|
|
, cmake
|
|
, fetchFromGitLab
|
|
, jansson
|
|
, libextractor
|
|
, libgcrypt
|
|
, libhandy
|
|
, libnotify
|
|
, gnunet
|
|
, gtk3
|
|
, pkgconfig
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cadet-gtk";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "TheJackiMonster";
|
|
repo = "cadet-gtk";
|
|
rev = "14a5a86e06d66b75b1e1e12f332cba2d68644493";
|
|
sha256 = "0ai0sxghkj4zln0j74hsc7gmk9cfkmw8iqz29vckf4636f8bh3mn";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkgconfig
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
jansson
|
|
libextractor
|
|
libgcrypt
|
|
libhandy
|
|
libnotify
|
|
gnunet
|
|
gtk3
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A GTK based GUI for the CADET subsystem of GNUnet.";
|
|
homepage = https://gitlab.com/TheJackiMonster/cadet-gtk;
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ royneary ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|