Merge pull request #239140 from doronbehar/pkg/mswatch

mswatch: init at unstable-2018-11-21

authored by

Doron Behar and committed by
GitHub
497c2f51 c0942c40

+39
+37
pkgs/applications/networking/mailreaders/mswatch/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchzip 4 + , pkg-config 5 + , autoreconfHook 6 + , bison 7 + , flex 8 + , glib 9 + }: 10 + 11 + stdenv.mkDerivation rec { 12 + pname = "mswatch"; 13 + # Stable release won't compile successfully 14 + version = "unstable-2018-11-21"; 15 + 16 + src = fetchzip { 17 + url = "https://sourceforge.net/code-snapshots/svn/m/ms/mswatch/code/mswatch-code-r369-trunk.zip"; 18 + hash = "sha256-czwwhchTizfgVmeknQGLijYgaFSP/45pD2yhDKj5BKw="; 19 + }; 20 + nativeBuildInputs = [ 21 + pkg-config 22 + autoreconfHook 23 + bison # For yacc 24 + flex 25 + ]; 26 + buildInputs = [ 27 + glib 28 + ]; 29 + 30 + meta = with lib; { 31 + description = "A command-line Linux utility that efficiently directs mail synchronization between a pair of mailboxes."; 32 + homepage = "https://mswatch.sourceforge.net/"; 33 + license = licenses.gpl2Plus; 34 + platforms = platforms.linux; 35 + maintainers = with maintainers; [ doronbehar ]; 36 + }; 37 + }
+2
pkgs/top-level/all-packages.nix
··· 429 429 430 430 chatgpt-retrieval-plugin = callPackage ../servers/chatgpt-retrieval-plugin { }; 431 431 432 + mswatch = callPackage ../applications/networking/mailreaders/mswatch { }; 433 + 432 434 chef-cli = callPackage ../tools/misc/chef-cli { }; 433 435 434 436 checkov = callPackage ../development/tools/analysis/checkov {