haskell-punycode: add version 2.0
This commit is contained in:
15
pkgs/development/libraries/haskell/punycode/default.nix
Normal file
15
pkgs/development/libraries/haskell/punycode/default.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{ 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 ];
|
||||
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;
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user