mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 18:59:42 +01:00
ab8ec43d17
* Update turtle, optparse-{applicative,generic}; remove stack dep from nix-shell env * Track proto3-suite changes to readDotProtoWithContext * Update proto3-suite gitrev, use `compileDotProtoFileOrDie` in `GeneratedTests` * Bump `proto3-suite` rev * Bump `proto3-suite` and `proto3-wire` gitrevs, update `stack.yaml`
20 lines
820 B
Nix
20 lines
820 B
Nix
{ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock
|
|
, directory, doctest, foldl, hostname, managed, optional-args
|
|
, optparse-applicative, process, semigroups, stdenv, stm
|
|
, system-fileio, system-filepath, temporary, text, time
|
|
, transformers, unix, unix-compat
|
|
}:
|
|
mkDerivation {
|
|
pname = "turtle";
|
|
version = "1.3.6";
|
|
sha256 = "0fr8p6rnk2lrsgbfh60jlqcjr0nxrh3ywxsj5d4psck0kgyhvg1m";
|
|
libraryHaskellDepends = [
|
|
ansi-wl-pprint async base bytestring clock directory foldl hostname
|
|
managed optional-args optparse-applicative process semigroups stm
|
|
system-fileio system-filepath temporary text time transformers unix
|
|
unix-compat
|
|
];
|
|
testHaskellDepends = [ base doctest system-filepath temporary ];
|
|
description = "Shell programming, Haskell-style";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
}
|