mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-14 23:29:42 +01:00
15 lines
463 B
Nix
15 lines
463 B
Nix
|
{ mkDerivation, base, base-compat, bifunctors, contravariant, hspec
|
||
|
, QuickCheck, stdenv
|
||
|
}:
|
||
|
mkDerivation {
|
||
|
pname = "base-compat-batteries";
|
||
|
version = "0.10.5";
|
||
|
sha256 = "175dcfd1453bd02ec955c05181cbf4278af145183b5899c62d3be29d866170ee";
|
||
|
libraryHaskellDepends = [
|
||
|
base base-compat bifunctors contravariant
|
||
|
];
|
||
|
testHaskellDepends = [ base hspec QuickCheck ];
|
||
|
description = "base-compat with extra batteries";
|
||
|
license = stdenv.lib.licenses.mit;
|
||
|
}
|