Remove ttysnoop
No longer exists
This commit is contained in:
parent
fd60b63928
commit
cc7c28332b
3 changed files with 0 additions and 43 deletions
|
@ -1,38 +0,0 @@
|
|||
{stdenv, fetchurl}:
|
||||
let
|
||||
s = # Generated upstream information
|
||||
rec {
|
||||
baseName="ttysnoop";
|
||||
version="0.12d.k26";
|
||||
name="${baseName}-${version}";
|
||||
hash="0jb2zchaiqmmickj0la7wjw3sf9vy65qfhhs11yrzx4mmwkp0395";
|
||||
url="http://sysd.org/stas/files/active/0/ttysnoop-0.12d.k26.tar.gz";
|
||||
sha256="0jb2zchaiqmmickj0la7wjw3sf9vy65qfhhs11yrzx4mmwkp0395";
|
||||
};
|
||||
buildInputs = [
|
||||
];
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
inherit (s) name version;
|
||||
inherit buildInputs;
|
||||
src = fetchurl {
|
||||
inherit (s) url sha256;
|
||||
};
|
||||
preBuild = ''
|
||||
sed -e "s@/sbin@$out/sbin@g" -i Makefile
|
||||
sed -e "s@/usr/man@$out/share/man@g" -i Makefile
|
||||
mkdir -p "$out/share/man/man8"
|
||||
mkdir -p "$out/sbin"
|
||||
'';
|
||||
postInstall = ''
|
||||
mkdir -p "$out/etc"
|
||||
cp snooptab.dist "$out/etc/snooptab"
|
||||
'';
|
||||
meta = {
|
||||
inherit (s) version;
|
||||
description = "A tool to clone input and output of another tty/pty to the current one";
|
||||
license = stdenv.lib.licenses.gpl2 ;
|
||||
maintainers = [stdenv.lib.maintainers.raskin];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
url http://sysd.org/stas/node/35
|
||||
ensure_choice
|
||||
version '.*-([0-9a-z.]+)[.]tar[.].*' '\1'
|
|
@ -3920,8 +3920,6 @@ in
|
|||
|
||||
ttyrec = callPackage ../tools/misc/ttyrec { };
|
||||
|
||||
ttysnoop = callPackage ../os-specific/linux/ttysnoop {};
|
||||
|
||||
ttylog = callPackage ../tools/misc/ttylog { };
|
||||
|
||||
twitterBootstrap = callPackage ../development/web/twitter-bootstrap {};
|
||||
|
|
Loading…
Reference in a new issue