2021-01-17 06:51:22 +03:00
|
|
|
{ lib, stdenv, fetchurl, autoconf, automake, intltool, libtool, pkg-config, encfs
|
2021-03-16 20:30:03 +03:00
|
|
|
, glib , libgee, gtk3, libgnome-keyring, vala, wrapGAppsHook, xorg, gobject-introspection
|
2016-10-26 17:51:07 +03:00
|
|
|
}:
|
2015-10-28 01:45:57 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-12-19 05:05:32 +03:00
|
|
|
version = "1.8.19";
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "gnome-encfs-manager";
|
2015-10-28 01:45:57 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-12-30 20:42:10 +03:00
|
|
|
url = "https://launchpad.net/gencfsm/trunk/1.8/+download/gnome-encfs-manager_${version}.tar.xz";
|
2017-12-19 05:05:32 +03:00
|
|
|
sha256 = "1h6x8dyp1fvxvr8fwki98ppf4sa20qf7g59jc9797b2vrgm60h1i";
|
2015-10-28 01:45:57 +03:00
|
|
|
};
|
|
|
|
|
2021-01-17 06:51:22 +03:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-06 00:26:13 +03:00
|
|
|
buildInputs = [ autoconf automake intltool libtool vala glib encfs
|
2021-03-16 20:30:03 +03:00
|
|
|
gtk3 libgnome-keyring libgee xorg.libSM xorg.libICE
|
2018-12-02 14:41:15 +03:00
|
|
|
wrapGAppsHook gobject-introspection ];
|
2015-10-28 01:45:57 +03:00
|
|
|
|
|
|
|
patches = [ ./makefile-mkdir.patch ];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
./autogen.sh
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [ "--disable-appindicator" ];
|
|
|
|
|
2021-01-24 12:19:10 +03:00
|
|
|
preFixup = "gappsWrapperArgs+=(--prefix PATH : ${encfs}/bin)";
|
2015-10-28 01:45:57 +03:00
|
|
|
|
2017-11-29 13:26:43 +03:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
meta = with lib; {
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "http://www.libertyzero.com/GEncfsM/";
|
|
|
|
downloadPage = "https://launchpad.net/gencfsm/";
|
2015-10-28 01:45:57 +03:00
|
|
|
description = "EncFS manager and mounter with GNOME3 integration";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.spacefrogg ];
|
|
|
|
};
|
|
|
|
}
|