mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
9a624d10e3
Since theey is not active from at least six years. All the packages on this commit became orphans. --------------------------------------------------------------------------- There are files not covered by this commit, because they will be adopted soon. Namely: - pkgs/by-name/zs/zsync/package.nix - pkgs/games/bsdgames/default.nix - pkgs/misc/ghostscript/default.nix - pkgs/os-specific/linux/kernel/perf/default.nix - pkgs/tools/system/logrotate/default.nix
28 lines
683 B
Nix
28 lines
683 B
Nix
{ lib, stdenv, fetchurl
|
|
, sendmailPath ? "/run/wrappers/bin/sendmail"
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ts";
|
|
version = "1.0.3";
|
|
|
|
installPhase=''make install "PREFIX=$out"'';
|
|
|
|
patchPhase = ''
|
|
sed -i s,/usr/sbin/sendmail,${sendmailPath}, mail.c ts.1
|
|
'';
|
|
|
|
src = fetchurl {
|
|
url = "https://viric.name/~viric/soft/ts/ts-${version}.tar.gz";
|
|
sha256 = "sha256-+oMzEVQ9xTW2DLerg8ZKte4xEo26qqE93jQZhOVCtCg=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "http://vicerveza.homeunix.net/~viric/soft/ts";
|
|
description = "Task spooler - batch queue";
|
|
license = licenses.gpl2Only;
|
|
maintainers = [ ];
|
|
platforms = platforms.all;
|
|
mainProgram = "ts";
|
|
};
|
|
}
|