nixpkgs-overlay/pkgs/cadet-gtk/default.nix

49 lines
838 B
Nix
Raw Normal View History

2021-07-24 15:53:20 +02:00
{ lib
, stdenv
2020-06-19 20:31:47 +02:00
, 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";
2020-06-19 20:31:47 +02:00
};
nativeBuildInputs = [
cmake
pkgconfig
wrapGAppsHook
];
buildInputs = [
jansson
libextractor
libgcrypt
libhandy
gnunet
gtk3
];
2021-07-24 15:53:20 +02:00
meta = with lib; {
2020-06-19 20:31:47 +02:00
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;
};
}