From e146a02d14cf1ff414b9e3a1151d6541485c9efb Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Fri, 25 Apr 2014 06:51:24 -0500 Subject: [PATCH] nixpkgs: Add cryptol2 expression This is just a convenient shorthand so people don't have to spell out haskellPackages.cryptol Note that the top-level expression is named 'cryptol2' but the package isn't. That's because Cryptol is a library and other things could depend on it (hence the vanilla name), but also the full name will be disambiguated as 'haskell-cryptol-ghc7.6.3' anyway. Signed-off-by: Austin Seipp --- pkgs/top-level/all-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4761d787fa5..01d120deb81 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2461,6 +2461,8 @@ let cmucl_binary = callPackage ../development/compilers/cmucl/binary.nix { }; + cryptol2 = haskellPackages.cryptol; + cython = pythonPackages.cython; cython3 = python3Packages.cython;