mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
haskell-cipher-rc4: add version 0.1.2
This commit is contained in:
parent
6abb59cbac
commit
bbb3726fad
13
pkgs/development/libraries/haskell/cipher-rc4/default.nix
Normal file
13
pkgs/development/libraries/haskell/cipher-rc4/default.nix
Normal file
@ -0,0 +1,13 @@
|
||||
{ cabal }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "cipher-rc4";
|
||||
version = "0.1.2";
|
||||
sha256 = "0nyrqms7h3hq236h03sjjjqdcxn3iz3fg4ifqj43f4nb8gv0ifb1";
|
||||
meta = {
|
||||
homepage = "http://github.com/vincenthz/hs-cipher-rc4";
|
||||
description = "Fast RC4 cipher implementation";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -582,6 +582,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
|
||||
cipherAes = callPackage ../development/libraries/haskell/cipher-aes {};
|
||||
|
||||
cipherRc4 = callPackage ../development/libraries/haskell/cipher-rc4 {};
|
||||
|
||||
classyPrelude = callPackage ../development/libraries/haskell/classy-prelude {};
|
||||
|
||||
classyPreludeConduit = callPackage ../development/libraries/haskell/classy-prelude-conduit {};
|
||||
|
Loading…
Reference in New Issue
Block a user