-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
37 lines (33 loc) · 1013 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
27
28
29
30
31
32
33
34
35
36
37
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{
haskellPackages ? (import <nixpkgs> {}).haskellPackages}:
let inherit
(haskellPackages)
cabal acidState aeson async datetime hslogger hspec
httpStreams ioStreams mtl QuickCheck safecopy text time
transformers unorderedContainers url websockets
haste-compiler
cabalInstall;
in cabal.mkDerivation (self: {
pname = "erp";
version = "0.0.0.2";
src = ./.;
isLibrary = true;
isExecutable = true;
buildDepends = [
acidState aeson async datetime hslogger hspec httpStreams ioStreams
mtl safecopy text time transformers unorderedContainers url
websockets
];
testDepends = [
acidState aeson async datetime hslogger hspec httpStreams mtl
QuickCheck safecopy text time unorderedContainers url websockets
];
buildTools = [cabalInstall];
meta = {
homepage = "tbd";
description = "Create a data model for erp";
license = "GPL";
platforms = self.ghc.meta.platforms;
};
})