mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
71 lines
2.0 KiB
Nix
71 lines
2.0 KiB
Nix
{lib, stdenv, fetchFromGitHub, perl, perlPackages, makeWrapper, glibc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.1.5";
|
|
pname = "longview";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linode";
|
|
repo = "longview";
|
|
rev = "v${version}";
|
|
sha256 = "1i9lli8iw8sb1bd633i82fzhx5gz85ma9d1hra41pkv2p3h823pa";
|
|
};
|
|
|
|
patches = [
|
|
# log to systemd journal
|
|
./log-stdout.patch
|
|
];
|
|
|
|
# Read all configuration from /run/longview
|
|
postPatch = ''
|
|
substituteInPlace Linode/Longview/Util.pm \
|
|
--replace /var/run/longview.pid /run/longview/longview.pid \
|
|
--replace /etc/linode /run/longview
|
|
substituteInPlace Linode/Longview.pl \
|
|
--replace /etc/linode /run/longview
|
|
'';
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ perl glibc ]
|
|
++ (with perlPackages; [
|
|
LWP
|
|
LWPProtocolHttps
|
|
MozillaCA
|
|
CryptSSLeay
|
|
IOSocketINET6
|
|
LinuxDistribution
|
|
JSONPP
|
|
JSON
|
|
LogLogLite
|
|
TryTiny
|
|
DBI
|
|
DBDmysql
|
|
]);
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/usr
|
|
mv Linode $out
|
|
ln -s ../Linode/Longview.pl $out/bin/longview
|
|
for h in syscall.h sys/syscall.h asm/unistd.h asm/unistd_32.h asm/unistd_64.h bits/wordsize.h bits/syscall.h; do
|
|
${perl}/bin/h2ph -d $out ${glibc.dev}/include/$h
|
|
mkdir -p $out/usr/include/$(dirname $h)
|
|
mv $out${glibc.dev}/include/''${h%.h}.ph $out/usr/include/$(dirname $h)
|
|
done
|
|
wrapProgram $out/Linode/Longview.pl --prefix PATH : ${perl}/bin:$out/bin \
|
|
--suffix PERL5LIB : $out/Linode --suffix PERL5LIB : $PERL5LIB \
|
|
--suffix PERL5LIB : $out --suffix INC : $out
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.linode.com/longview";
|
|
description = "Collects all of your system-level metrics and sends them to Linode";
|
|
mainProgram = "longview";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.rvl ];
|
|
inherit version;
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
};
|
|
}
|