1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/punycode/default.nix
Peter Simons a07ae64cee haskell-punycode: disable the test suite
The test suite runs for 20+ minutes on my EeePC. That seems a little excessive.
2013-03-13 14:52:15 +01:00

17 lines
557 B
Nix

{ cabal, cereal, encoding, HUnit, mtl, QuickCheck, text }:
cabal.mkDerivation (self: {
pname = "punycode";
version = "2.0";
sha256 = "192jgfixnpxdj6jiiz92kx5bi6ij3c389b76q9f4vyfmvcajj1sr";
buildDepends = [ cereal mtl text ];
testDepends = [ cereal encoding HUnit mtl QuickCheck text ];
doCheck = false;
meta = {
homepage = "https://github.com/litherum/punycode";
description = "Encode unicode strings to ascii forms according to RFC 3492";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})