nixpkgs/pkgs/by-name/po/popfile/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

61 lines
1.7 KiB
Nix

{ lib, stdenv, fetchzip, makeWrapper, perlPackages,
... }:
stdenv.mkDerivation rec {
appname = "popfile";
version = "1.1.3";
name = "${appname}-${version}";
src = fetchzip {
url = "https://getpopfile.org/downloads/${appname}-${version}.zip";
sha256 = "0gcib9j7zxk8r2vb5dbdz836djnyfza36vi8215nxcdfx1xc7l63";
stripRoot = false;
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = (with perlPackages; [
## These are all taken from the popfile documentation as applicable to Linux
## https://getpopfile.org/docs/howtos:allplatformsrequireperl
perl
DBI
DBDSQLite
HTMLTagset
TimeDate # == DateParse
HTMLTemplate
# IO::Socket::Socks is not in nixpkgs
# IOSocketSocks
IOSocketSSL
NetSSLeay
SOAPLite
]);
installPhase = ''
mkdir -p $out/bin
# I user `cd` rather than `cp $out/* ...` b/c the * breaks syntax
# highlighting in emacs for me.
cd $src
cp -r * $out/bin
cd $out/bin
chmod +x *.pl
find $out -name '*.pl' -executable | while read path; do
wrapProgram "$path" \
--prefix PERL5LIB : $PERL5LIB:$out/bin \
--set POPFILE_ROOT $out/bin \
--run 'export POPFILE_USER=''${POPFILE_USER:-$HOME/.popfile}' \
--run 'test -d "$POPFILE_USER" || mkdir -m 0700 -p "$POPFILE_USER"'
done
'';
meta = {
description = "Email classification system that automatically sorts messages and fights spam";
homepage = "https://getpopfile.org/";
license = lib.licenses.gpl2Only;
# Should work on macOS, but havent tested it.
# Windows support is more complicated.
# https://getpopfile.org/docs/faq:systemrequirements
platforms = lib.platforms.linux;
};
}