48 lines
839 B
Nix
48 lines
839 B
Nix
|
{ stdenv
|
||
|
, cmake
|
||
|
, fetchFromGitLab
|
||
|
, jansson
|
||
|
, libextractor
|
||
|
, libgcrypt
|
||
|
, libhandy
|
||
|
, gnunet
|
||
|
, gtk3
|
||
|
, pkgconfig
|
||
|
, wrapGAppsHook
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "cadet-gtk";
|
||
|
version = "0.5.0";
|
||
|
|
||
|
src = fetchFromGitLab {
|
||
|
owner = "TheJackiMonster";
|
||
|
repo = "cadet-gtk";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "09a3ga5gfvrdq0z4325p7ndb78mg3lkc021c8bhkf6dxd76qm7r5";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
cmake
|
||
|
pkgconfig
|
||
|
wrapGAppsHook
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
jansson
|
||
|
libextractor
|
||
|
libgcrypt
|
||
|
libhandy
|
||
|
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;
|
||
|
};
|
||
|
}
|