mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
haskell-punycode: add version 2.0
This commit is contained in:
parent
0b0905be3b
commit
1dfe6d4e6b
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;
|
||||
};
|
||||
})
|
|
@ -1426,6 +1426,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
|
||||
prettyShow = callPackage ../development/libraries/haskell/pretty-show {};
|
||||
|
||||
punycode = callPackage ../development/libraries/haskell/punycode {};
|
||||
|
||||
primitive_0_4_1 = callPackage ../development/libraries/haskell/primitive/0.4.1.nix {};
|
||||
primitive_0_5 = callPackage ../development/libraries/haskell/primitive/0.5.nix {};
|
||||
primitive_0_5_0_1 = callPackage ../development/libraries/haskell/primitive/0.5.0.1.nix {};
|
||||
|
|
Loading…
Reference in a new issue