evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ca / caeml / package.nix
blobf109ccfc3137e9c7b3f463e061e419f660bb0bc2
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
5 buildGoModule rec {
6   pname = "caeml";
7   version = "unstable-2023-05-24";
9   src = fetchFromGitHub {
10     owner = "ferdinandyb";
11     repo = pname;
12     rev = "25dbe10e99aac9b0ce3b80787c162628104f5cd2";
13     sha256 = "UIQCNkUyrtMF0IiAfkDvE8siqxNvfFc9TZdlZiTxCVc=";
14   };
16   vendorHash = "sha256-SDJsRLIGlLv/6NUctCrn6z1IDEmum1Wn5I8RFuwcOe8=";
18   meta = with lib; {
19     description = "cat eml files";
20     mainProgram = "caeml";
21     longDescription = ''
22       Reads an email file from either STDIN or from a file passed as the first
23       argument, digests it and outputs it to STDOUT in a more human readable
24       format. This means only From, To, Cc, Bcc, Date and Subject headers are
25       kept and these are decoded and of all the parts only text/plain is returned.
26     '';
27     homepage = "https://github.com/ferdinandyb/caeml";
28     license = licenses.mit;
29     maintainers = with maintainers; [ emilytrau ];
30   };