summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/Crypto/default.nix
blob: a25330a7b612cd9826a1ea48d29cf3f23d5934d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{cabal, HUnit, QuickCheck}:

cabal.mkDerivation (self : {
  pname = "Crypto";
  version = "4.1.0";
  sha256 = "0984c833c5dfa6f4d56fd6fb284db7b7cef6676dc7999a1436aa856becba2b8f";
  propagatedBuildInputs = [HUnit QuickCheck];
  meta = {
    description = "Several encryption algorithms for Haskell";
  };
})