image-backup/default.nix

32 lines
1.2 KiB
Nix
Raw Permalink Normal View History

2023-02-15 20:34:05 +02:00
{ mkDerivation, aeson, amazonka, amazonka-s3, base, bytestring
, conduit, containers, cryptonite, dhall, directory, either
, ekg-core, filepath, generic-lens, hashable, hedgehog, hspec
, hspec-hedgehog, JuicyPixels, JuicyPixels-extra, lens, lib, mtl
, servant, servant-server, sqlite-simple, temporary, text
, transformers, unliftio, unordered-containers, vector, wai
2023-02-15 20:34:05 +02:00
, wai-middleware-metrics, warp
2023-02-12 14:19:45 +02:00
}:
mkDerivation {
pname = "image-backup";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
2023-02-15 20:34:05 +02:00
amazonka amazonka-s3 base bytestring conduit cryptonite dhall
directory either ekg-core filepath generic-lens JuicyPixels
JuicyPixels-extra lens mtl servant servant-server sqlite-simple
text unliftio unordered-containers vector wai
2023-02-13 17:05:32 +02:00
wai-middleware-metrics warp
2023-02-12 14:19:45 +02:00
];
executableHaskellDepends = [ base ];
2023-02-15 20:34:05 +02:00
testHaskellDepends = [
aeson amazonka amazonka-s3 base bytestring conduit containers
cryptonite dhall either filepath generic-lens hashable hedgehog
hspec hspec-hedgehog lens temporary text transformers
unordered-containers
2023-02-15 20:34:05 +02:00
];
2023-02-12 14:19:45 +02:00
license = lib.licenses.bsd3;
mainProgram = "image-backup";
}