mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 19:46:17 +01:00
732b115924
Signed-off-by: magic_rb <magic_rb@redalder.org>
67 lines
1,016 B
Nix
67 lines
1,016 B
Nix
{
|
|
mkDerivation,
|
|
aeson,
|
|
base,
|
|
bytestring,
|
|
crypton,
|
|
directory,
|
|
esqueleto,
|
|
extra,
|
|
filepath,
|
|
hashable,
|
|
http-api-data,
|
|
lib,
|
|
monad-logger,
|
|
mtl,
|
|
optparse-applicative,
|
|
path-pieces,
|
|
persistent,
|
|
persistent-mtl,
|
|
persistent-sqlite,
|
|
temporary,
|
|
text,
|
|
time,
|
|
tomland,
|
|
typed-process,
|
|
unliftio,
|
|
unordered-containers,
|
|
}:
|
|
mkDerivation {
|
|
pname = "photo-hs";
|
|
version = "0.1.0.0";
|
|
src = ./.;
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
libraryHaskellDepends = [
|
|
aeson
|
|
base
|
|
bytestring
|
|
crypton
|
|
directory
|
|
esqueleto
|
|
extra
|
|
filepath
|
|
hashable
|
|
http-api-data
|
|
monad-logger
|
|
mtl
|
|
optparse-applicative
|
|
path-pieces
|
|
persistent
|
|
persistent-mtl
|
|
persistent-sqlite
|
|
temporary
|
|
text
|
|
time
|
|
tomland
|
|
typed-process
|
|
unliftio
|
|
unordered-containers
|
|
];
|
|
executableHaskellDepends = [base];
|
|
testHaskellDepends = [base];
|
|
homepage = "redalder.org";
|
|
license = lib.licenses.lgpl3Plus;
|
|
mainProgram = "photo-hs";
|
|
}
|