summaryrefslogtreecommitdiff
path: root/sequence.nix
blob: ff364012e44150f58d5da3c86b7e45112a13882c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ mkDerivation, base, bimap, case-insensitive, containers
, data-default, directory, filepath, game-probability, lens, mtl
, readline, Shellac, Shellac-haskeline, stdenv, table-layout
, xdg-basedir
}:
mkDerivation {
  pname = "sequence";
  version = "0.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    base bimap case-insensitive containers data-default directory
    filepath game-probability lens mtl readline Shellac
    Shellac-haskeline table-layout xdg-basedir
  ];
  license = stdenv.lib.licenses.mit;
}