Merge pull request #28713 from nico202/enchive

enchive: init at 3.3
This commit is contained in:
Franz Pletz 2017-08-30 01:01:07 +02:00 committed by GitHub
commit 24d113ae5a
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 { };