tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
gnome-encfs-manager: init at 1.8.15
Michael Raitza
10 years ago
03b7e824
e0c5ee37
+50
3 changed files
expand all
collapse all
unified
split
pkgs
tools
security
gencfsm
default.nix
makefile-mkdir.patch
top-level
all-packages.nix
+34
pkgs/tools/security/gencfsm/default.nix
···
1
1
+
{ stdenv, fetchurl, autoconf, automake, intltool, libtool, pkgconfig, encfs
2
2
+
, glib , gnome3, gtk3, libgnome_keyring, vala, wrapGAppsHook, xorg }:
3
3
+
4
4
+
stdenv.mkDerivation rec {
5
5
+
version = "1.8.15";
6
6
+
name = "gnome-encfs-manager-${version}";
7
7
+
8
8
+
src = fetchurl {
9
9
+
url = "https://launchpad.net/gencfsm/trunk/1.8/+download/gnome-encfs-manager_${version}.tar.gz";
10
10
+
sha256 = "1iryli6fgw6a45abkrjacfac7dwjhbrhw652rqf0s183373db0mx";
11
11
+
};
12
12
+
13
13
+
buildInputs = [ autoconf automake intltool libtool pkgconfig vala glib encfs
14
14
+
gtk3 libgnome_keyring gnome3.libgee_1 xorg.libSM xorg.libICE
15
15
+
wrapGAppsHook ];
16
16
+
17
17
+
patches = [ ./makefile-mkdir.patch ];
18
18
+
19
19
+
preConfigure = ''
20
20
+
./autogen.sh
21
21
+
'';
22
22
+
23
23
+
configureFlags = [ "--disable-appindicator" ];
24
24
+
25
25
+
preFixup = ''gappsWrapperArgs+=(--prefix PATH : ${encfs}/bin)'';
26
26
+
27
27
+
meta = with stdenv.lib; {
28
28
+
homepage = http://www.libertyzero.com/GEncfsM/;
29
29
+
description = "EncFS manager and mounter with GNOME3 integration";
30
30
+
license = licenses.gpl2Plus;
31
31
+
platforms = platforms.linux;
32
32
+
maintainers = [ maintainers.spacefrogg ];
33
33
+
};
34
34
+
}
+14
pkgs/tools/security/gencfsm/makefile-mkdir.patch
···
1
1
+
--- a/dist/Makefile.am
2
2
+
+++ b/dist/Makefile.am
3
3
+
@@ -10,9 +10,9 @@ install-data-hook:
4
4
+
chmod 0755 $(shell find $(dist) -type d)
5
5
+
chmod 0644 $(shell find $(dist) -type f)
6
6
+
chmod 0755 $(shell find "scripts" -type f)
7
7
+
- test -z "$(DESTDIR)$(datadir)/dbus-1/services/" || /bin/mkdir -p "$(DESTDIR)$(datadir)/dbus-1/services/"
8
8
+
+ test -z "$(DESTDIR)$(datadir)/dbus-1/services/" || $(MKDIR_P) "$(DESTDIR)$(datadir)/dbus-1/services/"
9
9
+
cp "extra/com.libertyzero.gnome-encfs-manager.service" "$(DESTDIR)$(datadir)/dbus-1/services/"
10
10
+
- test -z "$(gencfsmdir)" || /bin/mkdir -p "$(gencfsmdir)"
11
11
+
+ test -z "$(gencfsmdir)" || $(MKDIR_P) "$(gencfsmdir)"
12
12
+
cp --parent -rf $(dist) "$(gencfsmdir)"
13
13
+
cp --parent -rf $(icons) $(DESTDIR)$(datadir)
14
14
+
+2
pkgs/top-level/all-packages.nix
···
843
843
844
844
fzf = goPackages.fzf.bin // { outputs = [ "bin" ]; };
845
845
846
846
+
gencfsm = callPackage ../tools/security/gencfsm { };
847
847
+
846
848
gist = callPackage ../tools/text/gist { };
847
849
848
850
gmic = callPackage ../tools/graphics/gmic { };