nixpkgs/pkgs/tools/system/ts/default.nix
Anderson Torres 9a624d10e3 treewide: remove viric from meta.maintainers [orphans]
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
2024-07-28 11:48:51 -03:00

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";
};
}