My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/security/enchive/default.nix

27 lines
669 B

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "enchive";
version = "3.5";
src = fetchFromGitHub {
owner = "skeeto";
repo = "enchive";
rev = version;
sha256 = "0fdrfc5l42lj2bvmv9dmkmhmm7qiszwk7cmdvnqad3fs7652g0qa";
};
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 = lib.licenses.unlicense;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.nico202 ];
};
}