Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
48 lines
757 B
Nix
48 lines
757 B
Nix
{
|
|
alcotest,
|
|
angstrom,
|
|
bigstringaf,
|
|
buildDunePackage,
|
|
crowbar,
|
|
fetchzip,
|
|
fmt,
|
|
hxd,
|
|
ke,
|
|
lib,
|
|
rresult,
|
|
uutf,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "unstrctrd";
|
|
version = "0.4";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/dinosaure/unstrctrd/releases/download/v${version}/unstrctrd-${version}.tbz";
|
|
hash = "sha256-CGcDqEr+VDTbDYkjxeYB6IFWiTkOTLJJl/Y2bHtv19g=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
angstrom
|
|
uutf
|
|
];
|
|
|
|
checkInputs = [
|
|
alcotest
|
|
bigstringaf
|
|
crowbar
|
|
fmt
|
|
hxd
|
|
ke
|
|
rresult
|
|
];
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "Library for parsing email headers";
|
|
homepage = "https://github.com/dinosaure/unstrctrd";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|