nixpkgs/pkgs/tools/security/gencfsm/default.nix

38 lines
1.1 KiB
Nix
Raw Normal View History

2015-10-27 22:45:57 +00:00
{ stdenv, fetchurl, autoconf, automake, intltool, libtool, pkgconfig, encfs
2016-12-30 17:42:10 +00:00
, glib , gnome3, gtk3, libgnome_keyring, vala, wrapGAppsHook, xorg
}:
2015-10-27 22:45:57 +00:00
stdenv.mkDerivation rec {
2016-12-30 17:42:10 +00:00
version = "1.8.18";
2015-10-27 22:45:57 +00:00
name = "gnome-encfs-manager-${version}";
src = fetchurl {
2016-12-30 17:42:10 +00:00
url = "https://launchpad.net/gencfsm/trunk/1.8/+download/gnome-encfs-manager_${version}.tar.xz";
sha256 = "1rpf683lxa78fmxxb0hnq7vdh3yn7qid2gqq67q9mk65sp9vdhdj";
2015-10-27 22:45:57 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ autoconf automake intltool libtool vala glib encfs
2016-12-30 17:42:10 +00:00
gtk3 libgnome_keyring gnome3.libgee xorg.libSM xorg.libICE
2015-10-27 22:45:57 +00:00
wrapGAppsHook ];
patches = [ ./makefile-mkdir.patch ];
preConfigure = ''
./autogen.sh
'';
configureFlags = [ "--disable-appindicator" ];
preFixup = ''gappsWrapperArgs+=(--prefix PATH : ${encfs}/bin)'';
meta = with stdenv.lib; {
homepage = http://www.libertyzero.com/GEncfsM/;
2016-12-30 17:42:10 +00:00
downloadPage = https://launchpad.net/gencfsm/;
2015-10-27 22:45:57 +00:00
description = "EncFS manager and mounter with GNOME3 integration";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.spacefrogg ];
};
}