Skip to content

Commit

Permalink
Merge pull request #95321 from stigtsp/package/perl-crypt-sodium-init
Browse files Browse the repository at this point in the history
perlPackages.CryptSodium: init at 0.11
  • Loading branch information
aanderse committed Aug 25, 2020
2 parents 17aabf6 + 01e9549 commit 0fa8211
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4039,6 +4039,23 @@ let
};
};

CryptSodium = buildPerlPackage {
pname = "Crypt-Sodium";
version = "0.11";
src = fetchurl {
url = "mirror://cpan/authors/id/M/MG/MGREGORO/Crypt-Sodium-0.11.tar.gz";
sha256 = "0y3c24zv4iwnvlf9zwxambk8ddram54fm6l1m5yhbskc0nhp6z4h";
};
NIX_CFLAGS_COMPILE = "-I${pkgs.libsodium.dev}/include";
NIX_CFLAGS_LINK = "-L${pkgs.libsodium.out}/lib -lsodium";
meta = {
homepage = "https://metacpan.org/release/Crypt-Sodium";
description = "Perl bindings for libsodium (NaCL)";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
maintainers = [ maintainers.sgo ];
};
};

CryptTwofish = buildPerlPackage {
pname = "Crypt-Twofish";
version = "2.17";
Expand Down

0 comments on commit 0fa8211

Please sign in to comment.