nixpkgs/pkgs/servers/monitoring/lcdproc/default.nix

50 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, makeWrapper, pkgconfig
2020-04-28 03:29:39 +00:00
, doxygen, freetype, libX11, libftdi, libusb-compat-0_1, libusb1, ncurses, perl }:
2017-07-26 08:31:52 +00:00
stdenv.mkDerivation rec {
pname = "lcdproc";
2017-07-26 08:31:52 +00:00
version = "0.5.9";
src = fetchFromGitHub {
owner = "lcdproc";
repo = "lcdproc";
rev = "v${version}";
sha256 = "1r885zv1gsh88j43x6fvzbdgfkh712a227d369h4fdcbnnfd0kpm";
};
patches = [
./hardcode_mtab.patch
];
configureFlags = [
"--enable-lcdproc-menus"
"--enable-drivers=all"
"--with-pidfile-dir=/run"
];
2020-04-28 03:29:39 +00:00
buildInputs = [ freetype libX11 libftdi libusb-compat-0_1 libusb1 ncurses ];
2017-07-26 08:31:52 +00:00
nativeBuildInputs = [ autoreconfHook doxygen makeWrapper pkgconfig ];
# In 0.5.9: gcc: error: libbignum.a: No such file or directory
enableParallelBuilding = false;
2017-07-26 08:31:52 +00:00
postFixup = ''
for f in $out/bin/*.pl ; do
substituteInPlace $f \
2021-01-15 07:07:56 +00:00
--replace /usr/bin/perl ${lib.getBin perl}/bin/perl
2017-07-26 08:31:52 +00:00
done
# NixOS will not use this file anyway but at least we can now execute LCDd
substituteInPlace $out/etc/LCDd.conf \
--replace server/drivers/ $out/lib/lcdproc/
'';
meta = with lib; {
2017-07-26 08:31:52 +00:00
description = "Client/server suite for controlling a wide variety of LCD devices";
homepage = "http://lcdproc.org/";
2017-07-26 08:31:52 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.unix;
};
}