Merge pull request #291663 from D3vil0p3r/patch-6

undbx: init at 0.22-unstable-2019-02-11

authored by a-n-n-a-l-e-e and committed by GitHub 72974827 31f91738

+34
+34
pkgs/by-name/un/undbx/package.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , fetchpatch 5 + , autoreconfHook 6 + }: 7 + 8 + stdenv.mkDerivation (finalAttrs: { 9 + pname = "undbx"; 10 + version = "0.22-unstable-2019-02-11"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "ZungBang"; 14 + repo = "undbx"; 15 + rev = "5e31c757e137a6409115cac0623d61d384019b7a"; 16 + hash = "sha256-leregcv3dv/D3WvFkYyjQePdKi4BgE0aj5PY6JiSKl8="; 17 + }; 18 + 19 + nativeBuildInputs = [ autoreconfHook ]; 20 + 21 + postPatch = '' 22 + substituteInPlace Makefile.am \ 23 + --replace-fail "-Werror" "" \ 24 + --replace-fail "bin_SCRIPTS" "#bin_SCRIPTS" 25 + ''; 26 + meta = with lib; { 27 + description = "Extract e-mail messages from Outlook Express DBX files"; 28 + homepage = "https://github.com/ZungBang/undbx"; 29 + maintainers = with maintainers; [ d3vil0p3r ]; 30 + platforms = platforms.unix; 31 + license = licenses.gpl3Plus; 32 + mainProgram = "undbx"; 33 + }; 34 + })