2017-01-29 10:11:01 +00:00
|
|
|
{ fetchurl, stdenv, bison, flex, pam, sendmailPath ? "/run/wrappers/bin/sendmail" }:
|
2008-04-01 10:08:17 +01:00
|
|
|
|
2017-09-05 12:27:20 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "at-${version}";
|
|
|
|
version = "3.1.20";
|
2008-04-01 10:08:17 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
# Debian is apparently the last location where it can be found.
|
2017-09-05 12:27:20 +01:00
|
|
|
url = "mirror://debian/pool/main/a/at/at_${version}.orig.tar.gz";
|
|
|
|
sha256 = "1fgsrqpx0r6qcjxmlsqnwilydhfxn976c870mjc0n1bkmcy94w88";
|
2008-04-01 10:08:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./install.patch ];
|
|
|
|
|
2009-08-21 00:40:50 +01:00
|
|
|
buildInputs =
|
2014-09-06 19:10:19 +01:00
|
|
|
[ bison flex pam ];
|
2008-04-01 10:08:17 +01:00
|
|
|
|
2009-08-21 00:57:33 +01:00
|
|
|
preConfigure =
|
|
|
|
''
|
2014-09-06 19:10:19 +01:00
|
|
|
export SENDMAIL=${sendmailPath}
|
2009-08-21 00:57:33 +01:00
|
|
|
# Purity: force atd.pid to be placed in /var/run regardless of
|
|
|
|
# whether it exists now.
|
|
|
|
substituteInPlace ./configure --replace "test -d /var/run" "true"
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
''
|
|
|
|
--with-etcdir=/etc/at
|
|
|
|
--with-jobdir=/var/spool/atjobs --with-atspool=/var/spool/atspool
|
|
|
|
--with-daemon_username=atd --with-daemon_groupname=atd
|
|
|
|
'';
|
2008-04-01 10:08:17 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The classical Unix `at' job scheduling command'';
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://packages.qa.debian.org/at;
|
2015-03-20 15:52:02 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2008-04-01 10:08:17 +01:00
|
|
|
};
|
2009-02-13 18:06:25 +00:00
|
|
|
}
|