summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/haskell/recht.nix
blob: c98000564f5d853df601a424557b6c465db906ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ mkDerivation, async, base, blessings, data-default, directory
, filepath, optparse-generic, pandoc, random, regex-tdfa, safe
, scalpel, stdenv, text
, fetchFromGitHub
}:
mkDerivation rec {
  pname = "recht";
  version = "0.1.0";
  src = fetchFromGitHub {
    owner = "kmein";
    repo = "recht";
    rev = "e3ed36e969cca138e6fc8199b0234d4fe36b663d";
    sha256 = "1cbdahjrhcx9jwmkncal04ss6rb2bf1ikyfxwvy6ngazfmj1d9f2";

  };
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    async base blessings data-default directory filepath
    optparse-generic pandoc random regex-tdfa safe scalpel text
  ];
  license = "unknown";
  hydraPlatforms = stdenv.lib.platforms.none;
}