1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

check-{mssql,nwc,ups}-health: remove with statements

This commit is contained in:
Philip Taron 2024-08-16 14:10:44 -07:00
parent 82929eb694
commit 07c453277e
No known key found for this signature in database

View file

@ -22,14 +22,14 @@ let
nativeBuildInputs = [ autoreconfHook makeWrapper ];
prePatch = with lib; ''
prePatch = ''
rm -rf GLPlugin
ln -s ${glplugin} GLPlugin
substituteInPlace plugins-scripts/Makefile.am \
--replace /bin/cat ${getBin coreutils}/bin/cat \
--replace /bin/echo ${getBin coreutils}/bin/echo \
--replace /bin/grep ${getBin gnugrep}/bin/grep \
--replace /bin/sed ${getBin gnused}/bin/sed
--replace /bin/cat ${lib.getBin coreutils}/bin/cat \
--replace /bin/echo ${lib.getBin coreutils}/bin/echo \
--replace /bin/grep ${lib.getBin gnugrep}/bin/grep \
--replace /bin/sed ${lib.getBin gnused}/bin/sed
'';
postInstall = ''
@ -42,10 +42,10 @@ let
done
'';
meta = with lib; {
meta = {
homepage = "https://labs.consol.de/";
license = licenses.gpl2Only;
maintainers = with maintainers; [ peterhoeg ];
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ peterhoeg ];
inherit description;
};
};