summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/security/aespipe
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-10-09 04:42:10 -0700
committerRenaud <c0bw3b@users.noreply.github.com>2019-10-09 13:42:10 +0200
commit8a7f358c746022893960928d48eaee9af64c0991 (patch)
tree40699a5f5211736330173b11e0ca39bf892722eb /pkgs/tools/security/aespipe
parent7e1e1386066c25986402c19c849b7c6f91ff657d (diff)
aespipe: 2.4e -> 2.4f (#70547)
* aespipe: 2.4e -> 2.4f Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/aespipe/versions * aespipe: enable Padlock and AES-NI
Diffstat (limited to 'pkgs/tools/security/aespipe')
-rw-r--r--pkgs/tools/security/aespipe/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/tools/security/aespipe/default.nix b/pkgs/tools/security/aespipe/default.nix
index 22fb8848eb91..69bef27258e8 100644
--- a/pkgs/tools/security/aespipe/default.nix
+++ b/pkgs/tools/security/aespipe/default.nix
@@ -2,18 +2,20 @@
stdenv.mkDerivation rec {
pname = "aespipe";
- version = "2.4e";
+ version = "2.4f";
src = fetchurl {
url = "mirror://sourceforge/loop-aes/aespipe/aespipe-v${version}.tar.bz2";
- sha256 = "0fmr0vk408bf13jydhdmcdhqw31yc9qk329bs9i60alccywapmds";
+ sha256 = "15pg9j27mjzl78mpzkdqd84kdafj0g6j72f8wgjrpp2qkxjy2ddi";
};
- meta = {
+ configureFlags = [ "--enable-padlock" "--enable-intelaes" ];
+
+ meta = with stdenv.lib; {
description = "AES encrypting or decrypting pipe";
homepage = http://loop-aes.sourceforge.net/aespipe.README;
- license = stdenv.lib.licenses.gpl2;
- maintainers = [ stdenv.lib.maintainers.goibhniu ];
- platforms = stdenv.lib.platforms.linux;
+ license = licenses.gpl2;
+ maintainers = [ maintainers.goibhniu ];
+ platforms = platforms.linux;
};
}