nixos-config/pkgs/neomutt-export-patches.nix
Christoph Heiss 649c08429a
All checks were successful
flake / build (push) Successful in 2m54s
pkgs: build-support: remove unneeded prefix
Signed-off-by: Christoph Heiss <christoph@c8h4.io>
2024-08-25 23:23:03 +02:00

9 lines
238 B
Nix

{ buildPerlApplication, notmuch }:
buildPerlApplication {
name = "neomutt-export-patches";
runtimeInputs = [ notmuch ];
perlInputs = p: with p; [ IPCRun3 JSON ];
text = builtins.readFile ../extra/bin/neomutt-export-patches.pl;
}