Merge branch 'pipes-binary' of git://github.com/klao/nixpkgs
Add lens-family-core and pipes-binary Haskell packages
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
{ cabal, transformers }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "lens-family-core";
|
||||
version = "1.0.0";
|
||||
sha256 = "149wfxddw58h5q42r3nknmac8wsc9c8xzsw6vrlfb4yasg7bhw53";
|
||||
buildDepends = [ transformers ];
|
||||
meta = {
|
||||
description = "Haskell 98 Lens Families";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
||||
24
pkgs/development/libraries/haskell/pipes-binary/default.nix
Normal file
24
pkgs/development/libraries/haskell/pipes-binary/default.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
{ cabal, binary, lensFamilyCore, pipes, pipesBytestring, pipesParse
|
||||
, smallcheck, tasty, tastyHunit, tastySmallcheck, transformers
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "pipes-binary";
|
||||
version = "0.4.0";
|
||||
sha256 = "021shl5czrr82b06awy7biy93qf6nh0wwiadhr7qsawzdnzqz2vc";
|
||||
buildDepends = [
|
||||
binary pipes pipesBytestring pipesParse transformers
|
||||
];
|
||||
testDepends = [
|
||||
binary lensFamilyCore pipes pipesParse smallcheck tasty tastyHunit
|
||||
tastySmallcheck transformers
|
||||
];
|
||||
# Depends on an out-of-date version of smallcheck
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "https://github.com/k0001/pipes-binary";
|
||||
description = "Encode and decode binary streams using the pipes and binary libraries";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user