Files
nixpkgs/pkgs/by-name/un/undbx/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

35 lines
839 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "undbx";
version = "0.22-unstable-2019-02-11";
src = fetchFromGitHub {
owner = "ZungBang";
repo = "undbx";
rev = "5e31c757e137a6409115cac0623d61d384019b7a";
hash = "sha256-leregcv3dv/D3WvFkYyjQePdKi4BgE0aj5PY6JiSKl8=";
};
nativeBuildInputs = [ autoreconfHook ];
postPatch = ''
substituteInPlace Makefile.am \
--replace-fail "-Werror" "" \
--replace-fail "bin_SCRIPTS" "#bin_SCRIPTS"
'';
meta = with lib; {
description = "Extract e-mail messages from Outlook Express DBX files";
homepage = "https://github.com/ZungBang/undbx";
maintainers = with maintainers; [ d3vil0p3r ];
platforms = platforms.unix;
license = licenses.gpl3Plus;
mainProgram = "undbx";
};
})