1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/libraries/haskell/bert/default.nix

25 lines
742 B
Nix
Raw Normal View History

{ cabal, async, binary, binaryConduit, conduit, mtl, network
, networkConduit, parsec, smallcheck, tasty, tastyHunit
, tastySmallcheck, time, void
}:
cabal.mkDerivation (self: {
pname = "bert";
version = "1.2.2.1";
sha256 = "1x23grykamyclx6a5jzyqwp3hwr2ma61zvmz89f3cj06sa49cgs0";
buildDepends = [
binary binaryConduit conduit mtl network networkConduit parsec time
void
];
testDepends = [
async binary network smallcheck tasty tastyHunit tastySmallcheck
];
meta = {
homepage = "https://github.com/feuerbach/bert";
description = "BERT implementation";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
};
})