Merge pull request #239140 from doronbehar/pkg/mswatch

mswatch: init at unstable-2018-11-21
This commit is contained in:
Doron Behar 2023-06-30 09:13:07 +00:00 committed by GitHub
commit 497c2f514f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ lib
, stdenv
, fetchzip
, pkg-config
, autoreconfHook
, bison
, flex
, glib
}:
stdenv.mkDerivation rec {
pname = "mswatch";
# Stable release won't compile successfully
version = "unstable-2018-11-21";
src = fetchzip {
url = "https://sourceforge.net/code-snapshots/svn/m/ms/mswatch/code/mswatch-code-r369-trunk.zip";
hash = "sha256-czwwhchTizfgVmeknQGLijYgaFSP/45pD2yhDKj5BKw=";
};
nativeBuildInputs = [
pkg-config
autoreconfHook
bison # For yacc
flex
];
buildInputs = [
glib
];
meta = with lib; {
description = "A command-line Linux utility that efficiently directs mail synchronization between a pair of mailboxes.";
homepage = "https://mswatch.sourceforge.net/";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ doronbehar ];
};
}

View File

@ -429,6 +429,8 @@ with pkgs;
chatgpt-retrieval-plugin = callPackage ../servers/chatgpt-retrieval-plugin { };
mswatch = callPackage ../applications/networking/mailreaders/mswatch { };
chef-cli = callPackage ../tools/misc/chef-cli { };
checkov = callPackage ../development/tools/analysis/checkov {