enchive: init at 3.3

This commit is contained in:
= 2017-08-29 21:09:37 +02:00
parent ccd255776e
commit 82f835d2ee
No known key found for this signature in database
GPG key ID: E5900B8AC02DE455
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "enchive-${version}";
version = "3.3";
src = fetchFromGitHub {
owner = "skeeto";
repo = "enchive";
rev = version;
sha256 = "0i3b0v5dqz56m5ppzm3332yxkw17dxs2zpvf48769ljgjy74irfl";
};
makeFlags = ["PREFIX=$(out)"];
postInstall = ''
mkdir -p $out/share/emacs/site-lisp/
cp -v "$src/enchive-mode.el" "$out/share/emacs/site-lisp/"
'';
meta = {
description = "Encrypted personal archives";
homepage = https://github.com/skeeto/enchive;
license = stdenv.lib.licenses.unlicense;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.nico202 ];
};
}

View file

@ -565,6 +565,8 @@ with pkgs;
gconf = gnome2.GConf;
};
enchive = callPackage ../tools/security/enchive { };
enpass = callPackage ../tools/security/enpass { };
ezstream = callPackage ../tools/audio/ezstream { };