uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
118
pkgs/servers/mail/sympa/default.nix
Normal file
118
pkgs/servers/mail/sympa/default.nix
Normal file
|
|
@ -0,0 +1,118 @@
|
|||
{ lib, stdenv, perl, fetchFromGitHub, autoreconfHook, nixosTests }:
|
||||
|
||||
let
|
||||
dataDir = "/var/lib/sympa";
|
||||
runtimeDir = "/run/sympa";
|
||||
perlEnv = perl.withPackages (p: with p; [
|
||||
ArchiveZip
|
||||
CGI
|
||||
CGIFast
|
||||
ClassSingleton
|
||||
DateTime
|
||||
DBI
|
||||
DateTimeFormatMail
|
||||
DateTimeTimeZone
|
||||
Encode
|
||||
FCGI
|
||||
FileCopyRecursive
|
||||
FileNFSLock
|
||||
FilePath
|
||||
HTMLParser
|
||||
HTMLFormatter
|
||||
HTMLTree
|
||||
HTMLStripScriptsParser
|
||||
IO
|
||||
IOStringy
|
||||
LWP
|
||||
libintl-perl
|
||||
|
||||
MHonArc
|
||||
MIMECharset
|
||||
MIMETools
|
||||
MIMEEncWords
|
||||
MIMELiteHTML
|
||||
MailTools
|
||||
NetCIDR
|
||||
ScalarListUtils
|
||||
SysSyslog
|
||||
TermProgressBar
|
||||
TemplateToolkit
|
||||
URI
|
||||
UnicodeLineBreak
|
||||
XMLLibXML
|
||||
|
||||
### Features
|
||||
Clone
|
||||
CryptEksblowfish
|
||||
|
||||
DBDPg
|
||||
DBDSQLite
|
||||
DBDmysql
|
||||
|
||||
DataPassword
|
||||
EncodeLocale
|
||||
IOSocketSSL
|
||||
MailDKIM
|
||||
NetDNS
|
||||
perlldap
|
||||
libnet
|
||||
SOAPLite
|
||||
]);
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "sympa";
|
||||
version = "6.2.68";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "sympa-community";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-biTF2We9/ZBFBNpltyJonAe5tpXz+eNam+Bu6esJPiY=";
|
||||
};
|
||||
|
||||
configureFlags = [
|
||||
"--enable-fhs"
|
||||
"--without-initdir"
|
||||
"--without-unitsdir"
|
||||
"--without-smrshdir"
|
||||
|
||||
"--with-lockdir=${runtimeDir}"
|
||||
"--with-piddir=${runtimeDir}"
|
||||
"--with-confdir=${dataDir}/etc"
|
||||
"--sysconfdir=${dataDir}/etc"
|
||||
"--with-spooldir=${dataDir}/spool"
|
||||
"--with-expldir=${dataDir}/list_data"
|
||||
];
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
buildInputs = [ perlEnv ];
|
||||
patches = [ ./make-docs.patch ];
|
||||
|
||||
prePatch = ''
|
||||
patchShebangs po/sympa/add-lang.pl
|
||||
'';
|
||||
|
||||
preInstall = ''
|
||||
mkdir "$TMP/bin"
|
||||
for i in chown chgrp chmod; do
|
||||
echo '#!${stdenv.shell}' >> "$TMP/bin/$i"
|
||||
chmod +x "$TMP/bin/$i"
|
||||
done
|
||||
PATH="$TMP/bin:$PATH"
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
rm -rf "$TMP/bin"
|
||||
'';
|
||||
|
||||
passthru.tests = {
|
||||
inherit (nixosTests) sympa;
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Open source mailing list manager";
|
||||
homepage = "https://www.sympa.org";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ sorki mmilata ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue