mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
Merge pull request #20250 from guillaumekoenig/add-encryptr-2.0.0
encryptr: init at 2.0.0
This commit is contained in:
commit
7b5619506b
57
pkgs/tools/security/encryptr/default.nix
Normal file
57
pkgs/tools/security/encryptr/default.nix
Normal file
@ -0,0 +1,57 @@
|
||||
{ stdenv, fetchurl, glib, nss, nspr, gconf, fontconfig, freetype
|
||||
, pango , cairo, libX11 , libXi, libXcursor, libXext, libXfixes
|
||||
, libXrender, libXcomposite , alsaLib, libXdamage, libXtst, libXrandr
|
||||
, expat, libcap, systemd , dbus, gtk2 , gdk_pixbuf, libnotify
|
||||
}:
|
||||
|
||||
let
|
||||
arch = if stdenv.system == "x86_64-linux" then "amd"
|
||||
else if stdenv.system == "i686-linux" then "i386"
|
||||
else throw "Encryptr for ${stdenv.system} not supported!";
|
||||
|
||||
sha256 = if stdenv.system == "x86_64-linux" then "1j3g467g7ar86hpnh6q9mf7mh2h4ia94mwhk1283zh739s2g53q2"
|
||||
else if stdenv.system == "i686-linux" then "02j9hg9b1jlv25q1sjfhv8d46mii33f94dj0ccn83z9z18q4y2cm"
|
||||
else throw "Encryptr for ${stdenv.system} not supported!";
|
||||
|
||||
in stdenv.mkDerivation rec {
|
||||
name = "encryptr-${version}";
|
||||
version = "2.0.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://spideroak.com/dist/encryptr/signed/linux/targz/encryptr-${version}_${arch}.tar.gz";
|
||||
inherit sha256;
|
||||
};
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
rpath = stdenv.lib.makeLibraryPath [
|
||||
glib nss nspr gconf fontconfig freetype pango cairo libX11 libXi
|
||||
libXcursor libXext libXfixes libXrender libXcomposite alsaLib
|
||||
libXdamage libXtst libXrandr expat libcap dbus gtk2 gdk_pixbuf
|
||||
libnotify stdenv.cc.cc
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -pv $out/bin $out/lib
|
||||
cp -v {encryptr-bin,icudtl.dat,nw.pak} $out/bin
|
||||
mv -v $out/bin/encryptr{-bin,}
|
||||
cp -v lib* $out/lib
|
||||
ln -sv ${systemd.lib}/lib/libudev.so.1 $out/lib/libudev.so.0
|
||||
|
||||
patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
|
||||
--set-rpath $out/lib:${rpath} \
|
||||
$out/bin/encryptr
|
||||
'';
|
||||
|
||||
# If stripping, node-webkit does not find
|
||||
# its application and shows a generic page
|
||||
dontStrip = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://spideroak.com/solutions/encryptr;
|
||||
description = "Free, private and secure password management tool and e-wallet";
|
||||
license = licenses.unfree;
|
||||
maintainers = with maintainers; [ guillaumekoenig ];
|
||||
platform = platforms.linux;
|
||||
};
|
||||
}
|
@ -517,6 +517,10 @@ in
|
||||
|
||||
elvish = callPackage ../shells/elvish { };
|
||||
|
||||
encryptr = callPackage ../tools/security/encryptr {
|
||||
gconf = gnome2.GConf;
|
||||
};
|
||||
|
||||
enpass = callPackage ../tools/security/enpass { };
|
||||
|
||||
genymotion = callPackage ../development/mobile/genymotion { };
|
||||
|
Loading…
Reference in New Issue
Block a user