citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

payment.nix (1335B)


      1 { mkDerivation
      2 , Decimal
      3 , MissingH
      4 , QuickCheck
      5 , aeson
      6 , aeson-pretty
      7 , ansi-wl-pprint
      8 , async
      9 , attoparsec
     10 , base
     11 , bytestring
     12 , cased
     13 , cassava
     14 , data-default
     15 , directory
     16 , errors
     17 , envy
     18 , fetchFromGitHub
     19 , fetchgitPrivate
     20 , filepath
     21 , flexible
     22 , flexible-instances
     23 , foldl
     24 , formatting
     25 , hashable
     26 , haskellPackages
     27 , keys
     28 , lens
     29 , lens-aeson
     30 , lifted-base
     31 , money
     32 , monstercat-backend
     33 , mtl
     34 , options
     35 , parsec
     36 , pipes
     37 , pipes-bytestring
     38 , pipes-csv
     39 , pipes-safe
     40 , random
     41 , safe
     42 , stdenv
     43 , syb
     44 , split
     45 , text
     46 , time
     47 , transformers
     48 , unordered-containers
     49 , uuid
     50 , yaml
     51 }:
     52 mkDerivation {
     53   pname = "payment";
     54   version = "0.1.2";
     55   src = /dropbox/projects/monstercat/haskell/massager;
     56   buildDepends = [
     57     Decimal
     58     MissingH
     59     QuickCheck
     60     aeson
     61     aeson-pretty
     62     ansi-wl-pprint
     63     async
     64     attoparsec
     65     base
     66     bytestring
     67     cased
     68     cassava
     69     data-default
     70     directory
     71     errors
     72     envy
     73     filepath
     74     formatting
     75     split
     76     flexible
     77     flexible-instances
     78     foldl
     79     hashable
     80     keys
     81     lens
     82     lens-aeson
     83     lifted-base
     84     money
     85     monstercat-backend
     86     mtl
     87     options
     88     parsec
     89     pipes
     90     pipes-bytestring
     91     pipes-csv
     92     pipes-safe
     93     random
     94     safe
     95     syb
     96     text
     97     time
     98     transformers
     99     unordered-containers
    100     uuid
    101     yaml
    102   ];
    103   license = stdenv.lib.licenses.bsd3;
    104 }