mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 18:59:42 +01:00
11 lines
405 B
Nix
11 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;
|
||
|
}
|