4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
49 lines
1.4 KiB
Nix
49 lines
1.4 KiB
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, makeWrapper, pkgconfig
|
|
, doxygen, freetype, libX11, libftdi, libusb-compat-0_1, libusb1, ncurses, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lcdproc";
|
|
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"
|
|
];
|
|
|
|
buildInputs = [ freetype libX11 libftdi libusb-compat-0_1 libusb1 ncurses ];
|
|
nativeBuildInputs = [ autoreconfHook doxygen makeWrapper pkgconfig ];
|
|
|
|
# In 0.5.9: gcc: error: libbignum.a: No such file or directory
|
|
enableParallelBuilding = false;
|
|
|
|
postFixup = ''
|
|
for f in $out/bin/*.pl ; do
|
|
substituteInPlace $f \
|
|
--replace /usr/bin/perl ${stdenv.lib.getBin perl}/bin/perl
|
|
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; {
|
|
description = "Client/server suite for controlling a wide variety of LCD devices";
|
|
homepage = "http://lcdproc.org/";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|