-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
26 lines (26 loc) · 968 Bytes
/
default.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base, bytestring
, Cabal, containers, dhall, directory, filemanip, filepath
, haskeline, hlibgit2, hspec, main-tester, optparse-applicative
, prettyprinter, regex-tdfa, safe, stdenv, temporary, terminal-size
, text, transformers, typed-process, unix, unliftio
}:
mkDerivation {
pname = "shellbit";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson ansi-wl-pprint attoparsec base bytestring Cabal containers
dhall directory filemanip filepath haskeline hlibgit2
optparse-applicative prettyprinter safe temporary terminal-size
text transformers typed-process unix unliftio
];
executableHaskellDepends = [ base ];
testHaskellDepends = [
base bytestring Cabal directory filemanip filepath hspec
main-tester optparse-applicative regex-tdfa temporary text
typed-process unliftio
];
license = stdenv.lib.licenses.bsd3;
}