dotfiles/overlays/photo-hs/package.nix
magic_rb 732b115924
Package percept and unify `list, and editmetada filter syntax
Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-07-24 21:27:21 +02:00

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";
}