stockholm/krebs/5pkgs/haskell/mailaids.nix

22 lines
667 B
Nix
Raw Normal View History

2020-11-24 19:19:05 +00:00
{ mkDerivation, aeson, aeson-pretty, base, bytestring
2022-08-28 22:16:42 +00:00
, case-insensitive, fetchgit, lens, lib, optparse-applicative
, purebred-email, text, vector, word8
2020-11-24 19:19:05 +00:00
}:
mkDerivation {
pname = "mailaids";
2022-08-28 22:16:42 +00:00
version = "1.1.0";
2020-11-24 19:19:05 +00:00
src = fetchgit {
url = "https://cgit.krebsco.de/mailaids";
2022-08-28 22:16:42 +00:00
sha256 = "0mkq3b0j28h7ydg6aaqlqnvajb8nhdc9g7rmil2d4vl5fxxaqspv";
rev = "a25fc32eceefc10a91ef77ff2763b3f1b9324aaf";
2020-11-24 19:19:05 +00:00
fetchSubmodules = true;
};
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
aeson aeson-pretty base bytestring case-insensitive lens
optparse-applicative purebred-email text vector word8
];
2021-10-19 20:53:15 +00:00
license = lib.licenses.mit;
2020-11-24 19:19:05 +00:00
}