mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
haskell-bencoding: 0.4.3.0
This commit is contained in:
parent
30a941aa88
commit
ed51045f13
15
pkgs/development/libraries/haskell/bencoding/default.nix
Normal file
15
pkgs/development/libraries/haskell/bencoding/default.nix
Normal file
@ -0,0 +1,15 @@
|
||||
{ cabal, attoparsec, deepseq, hspec, mtl, QuickCheck, text }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "bencoding";
|
||||
version = "0.4.3.0";
|
||||
sha256 = "0f6d3g88y7i4s5wa53771n0fbkbs4na8vpy51wk21b563smdcpcc";
|
||||
buildDepends = [ attoparsec deepseq mtl text ];
|
||||
testDepends = [ attoparsec hspec QuickCheck ];
|
||||
meta = {
|
||||
homepage = "https://github.com/cobit/bencoding";
|
||||
description = "A library for encoding and decoding of BEncode data";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -231,6 +231,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
||||
|
||||
benchpress = callPackage ../development/libraries/haskell/benchpress {};
|
||||
|
||||
bencoding = callPackage ../development/libraries/haskell/bencoding {};
|
||||
|
||||
bert = callPackage ../development/libraries/haskell/bert {};
|
||||
|
||||
bifunctors = callPackage ../development/libraries/haskell/bifunctors {};
|
||||
|
Loading…
Reference in New Issue
Block a user