From cc1265d99558e02ab13a26372c38dd2b56baf924 Mon Sep 17 00:00:00 2001 From: Jonas Heinrich Date: Sun, 9 Feb 2025 11:30:02 +0100 Subject: [PATCH 1/2] brlaser: Switch to maintained fork --- pkgs/by-name/br/brlaser/package.nix | 45 +++++------------------------ 1 file changed, 8 insertions(+), 37 deletions(-) diff --git a/pkgs/by-name/br/brlaser/package.nix b/pkgs/by-name/br/brlaser/package.nix index deeda18924ec..b7d5e8cf4488 100644 --- a/pkgs/by-name/br/brlaser/package.nix +++ b/pkgs/by-name/br/brlaser/package.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation rec { pname = "brlaser"; - version = "6-unstable-2023-02-30"; + version = "6.2.7"; src = fetchFromGitHub { - owner = "pdewacht"; + owner = "Owl-Maintain"; repo = "brlaser"; - rev = "2a49e3287c70c254e7e3ac9dabe9d6a07218c3fa"; - sha256 = "sha256-1fvO9F7ifbYQHAy54mOx052XutfKXSK6iT/zj4Mhbww="; + tag = "v${version}"; + hash = "sha256-a+TjLmjqBz0b7v6kW1uxh4BGzrYOQ8aMdVo4orZeMT4="; }; nativeBuildInputs = [ @@ -38,40 +38,11 @@ stdenv.mkDerivation rec { 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. - This driver is known to work with these printers: - - Brother DCP-1510 - Brother DCP-1602 - Brother DCP-7030 - Brother DCP-7040 - Brother DCP-7055 - Brother DCP-7055W - Brother DCP-7060D - Brother DCP-7065DN - Brother DCP-7080 - Brother DCP-L2500D - Brother DCP-L2520D - Brother DCP-L2540DW - Brother HL-1110 - Brother HL-1200 - Brother HL-2030 - Brother HL-2140 - Brother HL-2220 - Brother HL-2270DW - Brother HL-5030 - Brother HL-L2300D - Brother HL-L2320D - Brother HL-L2340D - Brother HL-L2360D - Brother MFC-1910W - Brother MFC-7240 - Brother MFC-7360N - Brother MFC-7365DN - Brother MFC-7840W - Brother MFC-L2710DW - Lenovo M7605D + This driver is known to work with many printers in the DCP, HL and MFC series, along with a few others. + See the homepage for a full list. ''; - homepage = "https://github.com/pdewacht/brlaser"; + homepage = "https://github.com/Owl-Maintain/brlaser"; + changelog = "https://github.com/Owl-Maintain/brlaser/releases/tag/v${version}"; license = lib.licenses.gpl2Plus; platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ StijnDW ]; From 4d376f1f8c2ccf7266875f78a20a9dc24419dbce Mon Sep 17 00:00:00 2001 From: Jonas Heinrich Date: Sun, 9 Feb 2025 11:31:44 +0100 Subject: [PATCH 2/2] brlaser: Change maintainers --- pkgs/by-name/br/brlaser/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/br/brlaser/package.nix b/pkgs/by-name/br/brlaser/package.nix index b7d5e8cf4488..2cc36dd9d4ed 100644 --- a/pkgs/by-name/br/brlaser/package.nix +++ b/pkgs/by-name/br/brlaser/package.nix @@ -45,6 +45,6 @@ stdenv.mkDerivation rec { changelog = "https://github.com/Owl-Maintain/brlaser/releases/tag/v${version}"; license = lib.licenses.gpl2Plus; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ StijnDW ]; + maintainers = with lib.maintainers; [ onny ]; }; }