Unverified Commit e26ae8d6 authored by Jonas Heinrich's avatar Jonas Heinrich Committed by GitHub
Browse files

brlaser: Fix cross compilation (#377737)

parents 14e0a569 ad669d4f
Loading
Loading
Loading
Loading
+9 −5
Original line number Diff line number Diff line
@@ -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 ];
  };
}