diff --git a/pkgs/by-name/br/brlaser/package.nix b/pkgs/by-name/br/brlaser/package.nix index fff6673a9cf8a..deeda18924ec1 100644 --- a/pkgs/by-name/br/brlaser/package.nix +++ b/pkgs/by-name/br/brlaser/package.nix @@ -18,7 +18,11 @@ stdenv.mkDerivation rec { sha256 = "sha256-1fvO9F7ifbYQHAy54mOx052XutfKXSK6iT/zj4Mhbww="; }; - nativeBuildInputs = [ cmake ]; + nativeBuildInputs = [ + cmake + cups + ]; + buildInputs = [ zlib cups @@ -29,7 +33,7 @@ stdenv.mkDerivation rec { "-DCUPS_DATA_DIR=share/cups" ]; - meta = with lib; { + meta = { description = "CUPS driver for Brother laser printers"; longDescription = '' Although most Brother printers support a standard printer language such as PCL or PostScript, not all do. If you have a monochrome Brother laser printer (or multi-function device) and the other open source drivers don't work, this one might help. @@ -68,8 +72,8 @@ stdenv.mkDerivation rec { Lenovo M7605D ''; homepage = "https://github.com/pdewacht/brlaser"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ StijnDW ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ StijnDW ]; }; }