mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 18:59:42 +01:00
19125b42be
* `proto3-suite` => `9394ade` and regenerate CG artifacts * `proto3-suite` => `56cf36f` * `proto3-wire` => `a938330` * `proto3-suite` => `e8f2acb` * Update `stack.yaml` * Update CG artifacts for Echo and Arithmetic examples * Update `stack.yaml` * `proto3-suite` => `aff63e6` and add related nix deps * Update CG artifacts for Echo and Arithmetic examples * `proto3-suite` => `97c4f66` * Nitpick: Rename test exe from `test` to `tests` * Add `.gitattributes` files to mark generated modules
10 lines
405 B
Nix
10 lines
405 B
Nix
{ mkDerivation, base, Cabal, directory, filepath, stdenv }:
|
|
mkDerivation {
|
|
pname = "cabal-doctest";
|
|
version = "1.0.2";
|
|
sha256 = "0h3wsjf2mg8kw1zvxc0f9nzchj5kzvza9z0arcyixkd9rkgqq6sa";
|
|
libraryHaskellDepends = [ base Cabal directory filepath ];
|
|
homepage = "https://github.com/phadej/cabal-doctest";
|
|
description = "A Setup.hs helper for doctests running";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
}
|