undbx: init at 0.21-unstable-2019-02-11
This commit is contained in:
parent
4d11de3e80
commit
bd84aa21a0
1 changed files with 34 additions and 0 deletions
34
pkgs/by-name/un/undbx/package.nix
Normal file
34
pkgs/by-name/un/undbx/package.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, 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";
|
||||
};
|
||||
})
|
Loading…
Reference in a new issue