2021-05-12 13:07:36 +03:00
|
|
|
{ lib, stdenv, fetchurl, autoconf, automake, intltool, libtool, pkg-config
|
|
|
|
, encfs, libsecret , glib , libgee, gtk3, vala, wrapGAppsHook, xorg
|
|
|
|
, gobject-introspection
|
2016-10-26 17:51:07 +03:00
|
|
|
}:
|
2015-10-28 01:45:57 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-05-12 13:07:36 +03:00
|
|
|
version = "1.9";
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "gnome-encfs-manager";
|
2015-10-28 01:45:57 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-05-12 13:07:36 +03:00
|
|
|
url = with lib.versions;
|
|
|
|
"https://launchpad.net/gencfsm/trunk/${major version}.${minor version}/+download/gnome-encfs-manager_${version}.tar.xz";
|
|
|
|
sha256 = "RXVwg/xhfAQv3pWp3UylOhMKDh9ZACTuKM4lPrn1dk8=";
|
2015-10-28 01:45:57 +03:00
|
|
|
};
|
|
|
|
|
2021-05-12 13:07:36 +03:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoconf
|
|
|
|
automake
|
|
|
|
intltool
|
|
|
|
libtool
|
|
|
|
pkg-config
|
|
|
|
vala
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
buildInputs = [
|
|
|
|
glib
|
|
|
|
encfs
|
|
|
|
gtk3
|
|
|
|
libgee
|
|
|
|
xorg.libSM
|
|
|
|
xorg.libICE
|
|
|
|
gobject-introspection
|
|
|
|
libsecret
|
|
|
|
];
|
|
|
|
|
|
|
|
# Fix hardcoded paths to /bin/mkdir
|
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 ];
|
|
|
|
};
|
|
|
|
}
|