forked from mirrors/nixpkgs
9b4a4b15bb
With staging merged into master, we now have gnome3 = gnome3_22;. and error: while querying the derivation named ‘gnome-encfs-manager-1.8.16’: while evaluating the attribute ‘nativeBuildInputs’ of the derivation ‘gnome-encfs-manager-1.8.16’ at nixpkgs/pkgs/tools/security/gencfsm/default.nix:6:3: while evaluating ‘getOutput’ at nixpkgs/lib/attrsets.nix:453:23, called from undefined position: attribute ‘libgee_1’ missing, at nixpkgs/pkgs/tools/security/gencfsm/default.nix:14:27 cc maintainer @spacefrogg
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ stdenv, fetchurl, autoconf, automake, intltool, libtool, pkgconfig, encfs
|
|
, glib , gnome3, gtk3, libgnome_keyring, vala_0_23, wrapGAppsHook, xorg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.8.16";
|
|
name = "gnome-encfs-manager-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://launchpad.net/gencfsm/trunk/1.8/+download/gnome-encfs-manager_${version}.tar.gz";
|
|
sha256 = "06sz6zcmvxkqww5gx4brcqs4hlpy9d8sal9nmw0pdsvh8k5vmpgn";
|
|
};
|
|
|
|
buildInputs = [ autoconf automake intltool libtool pkgconfig vala_0_23 glib encfs
|
|
gtk3 libgnome_keyring gnome3.libgee_1 xorg.libSM xorg.libICE
|
|
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/;
|
|
description = "EncFS manager and mounter with GNOME3 integration";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.spacefrogg ];
|
|
broken = true;
|
|
};
|
|
}
|