2021-04-04 08:05:19 +00:00
|
|
|
{ mkDerivation, ansi-terminal, async, base, binary, bytestring
|
|
|
|
, data-default, directory, filepath, megaparsec
|
2021-10-19 20:51:26 +00:00
|
|
|
, optparse-applicative, pandoc, random, safe, scalpel, lib, text
|
2021-04-04 08:05:19 +00:00
|
|
|
, time
|
2021-03-30 17:33:36 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "recht";
|
2021-04-04 08:05:19 +00:00
|
|
|
version = "0.3.0";
|
2021-03-30 17:33:36 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kmein";
|
|
|
|
repo = "recht";
|
2021-04-04 08:05:19 +00:00
|
|
|
rev = version;
|
|
|
|
sha256 = "07cyd06wbnzcp33v0nq8cxyggvqrnbni0v2g8cpxar6idn1wlz85";
|
2021-03-30 17:33:36 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
executableHaskellDepends = [
|
2021-04-04 08:05:19 +00:00
|
|
|
ansi-terminal async base binary bytestring data-default directory
|
|
|
|
filepath megaparsec optparse-applicative pandoc random safe scalpel
|
|
|
|
text time
|
2021-03-30 17:33:36 +00:00
|
|
|
];
|
2021-10-19 20:51:26 +00:00
|
|
|
license = lib.licenses.mit;
|
2021-03-30 17:33:36 +00:00
|
|
|
}
|