2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2010-07-28 13:55:54 +02:00
|
|
|
|
|
|
|
# !!! Duplication: this package is almost exactly the same as `bsd-fingerd'.
|
|
|
|
|
2021-07-25 23:53:02 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "bsd-fingerd";
|
|
|
|
version = "0.17";
|
2008-01-28 20:51:14 +01:00
|
|
|
|
2010-07-28 13:55:54 +02:00
|
|
|
src = fetchurl {
|
2021-11-06 02:56:39 +01:00
|
|
|
url = "mirror://metalab/system/network/finger/bsd-finger-${version}.tar.gz";
|
2010-07-28 13:55:54 +02:00
|
|
|
sha256 = "1yhkiv0in588il7f84k2xiy78g9lv12ll0y7047gazhiimk5v244";
|
|
|
|
};
|
2008-01-28 20:51:14 +01:00
|
|
|
|
2010-07-28 13:55:54 +02:00
|
|
|
NIX_CFLAGS_COMPILE = "-D_GNU_SOURCE";
|
2008-01-28 20:51:14 +01:00
|
|
|
|
2010-07-28 13:55:54 +02:00
|
|
|
patches = [ ./ubuntu-0.17-9.patch ];
|
2008-01-28 20:51:14 +01:00
|
|
|
|
2010-07-28 13:55:54 +02:00
|
|
|
preBuild = "cd fingerd";
|
2008-01-28 20:51:14 +01:00
|
|
|
|
2021-01-24 10:19:10 +01:00
|
|
|
preInstall = "mkdir -p $out/man/man8 $out/sbin ";
|
2016-08-02 18:06:29 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-08-30 22:06:52 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.bsdOriginal;
|
2016-08-02 18:06:29 +02:00
|
|
|
};
|
2008-01-28 20:51:14 +01:00
|
|
|
}
|