mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
a30df95691
This change brings support for building and running the regressions test suites.
17 lines
532 B
Nix
17 lines
532 B
Nix
{ cabal, QuickCheck, testFramework, testFrameworkQuickcheck2 }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "cipher-aes";
|
|
version = "0.1.7";
|
|
sha256 = "1iai9c4rvxframylvc0xwx2nk6s0rsj4dc42wi334xyinilvfyng";
|
|
testDepends = [
|
|
QuickCheck testFramework testFrameworkQuickcheck2
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/vincenthz/hs-cipher-aes";
|
|
description = "Fast AES cipher implementation with advanced mode of operations";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|