mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
8a7f358c74
* 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
22 lines
587 B
Nix
22 lines
587 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "aespipe";
|
|
version = "2.4f";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/loop-aes/aespipe/aespipe-v${version}.tar.bz2";
|
|
sha256 = "15pg9j27mjzl78mpzkdqd84kdafj0g6j72f8wgjrpp2qkxjy2ddi";
|
|
};
|
|
|
|
configureFlags = [ "--enable-padlock" "--enable-intelaes" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "AES encrypting or decrypting pipe";
|
|
homepage = http://loop-aes.sourceforge.net/aespipe.README;
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|