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