Merge pull request #239140 from doronbehar/pkg/mswatch
mswatch: init at unstable-2018-11-21
This commit is contained in:
commit
497c2f514f
37
pkgs/applications/networking/mailreaders/mswatch/default.nix
Normal file
37
pkgs/applications/networking/mailreaders/mswatch/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user