Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7e1e1386066c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8a7f358c7460
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 9, 2019

  1. 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
    r-ryantm authored and c0bw3b committed Oct 9, 2019

    Unverified

    The email in this signature doesn’t match the committer email.
    Copy the full SHA
    8a7f358 View commit details
Showing with 8 additions and 6 deletions.
  1. +8 −6 pkgs/tools/security/aespipe/default.nix
14 changes: 8 additions & 6 deletions pkgs/tools/security/aespipe/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}