tvl-depot/users/Profpatsch/my-prelude/default.nix
Profpatsch 7168cb0ed3 feat(users/Profpatsch/mailbox-org): init
A smol little tool to talk to the mailbox.org backend. This is handy
for eventually setting stuff like email filters. Their API is absolute
crap, but we’ll deal with it.

Updates the prelude & adds some pretty printing helpers.

Change-Id: Ie3688f8ee1d7f23c65bcf4bfecc00c8269dae788
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7717
Reviewed-by: Profpatsch <mail@profpatsch.de>
Autosubmit: Profpatsch <mail@profpatsch.de>
Tested-by: BuildkiteCI
2023-01-01 22:02:25 +00:00

32 lines
692 B
Nix

{ depot, pkgs, lib, ... }:
pkgs.haskellPackages.mkDerivation {
pname = "my-prelude";
version = "0.0.1-unreleased";
src = depot.users.Profpatsch.exactSource ./. [
./my-prelude.cabal
./MyPrelude.hs
./Label.hs
./Pretty.hs
];
isLibrary = true;
libraryHaskellDepends = [
pkgs.haskellPackages.PyF
pkgs.haskellPackages.errors
pkgs.haskellPackages.profunctors
pkgs.haskellPackages.semigroupoids
pkgs.haskellPackages.these
pkgs.haskellPackages.validation-selective
pkgs.haskellPackages.error
pkgs.haskellPackages.hscolour
pkgs.haskellPackages.nicify-lib
pkgs.haskellPackages.ansi-terminal
];
license = lib.licenses.mit;
}