brasero: rename brasero-original to brasero-unwrapped

This commit is contained in:
Fabián Heredia Montiel 2024-09-29 16:52:03 -06:00
parent af61785ba3
commit 504c448b51
3 changed files with 6 additions and 5 deletions

View File

@ -1,11 +1,11 @@
{ lib, symlinkJoin, brasero-original, cdrtools, libdvdcss, makeWrapper }:
{ lib, symlinkJoin, brasero-unwrapped, cdrtools, libdvdcss, makeWrapper }:
let
binPath = lib.makeBinPath [ cdrtools ];
in symlinkJoin {
name = "brasero-${brasero-original.version}";
name = "brasero-${brasero-unwrapped.version}";
paths = [ brasero-original ];
paths = [ brasero-unwrapped ];
nativeBuildInputs = [ makeWrapper ];
postBuild = ''
@ -14,5 +14,5 @@ in symlinkJoin {
--prefix LD_PRELOAD : ${lib.makeLibraryPath [ libdvdcss ]}/libdvdcss.so
'';
inherit (brasero-original) meta;
inherit (brasero-unwrapped) meta;
}

View File

@ -190,6 +190,7 @@ mapAliases {
bpb = throw "bpb has been removed as it is unmaintained and not compatible with recent Rust versions"; # Added 2024-04-30
bpftool = bpftools; # Added 2021-05-03
bpytop = throw "bpytop has been deprecated by btop"; # Added 2023-02-16
brasero-original = lib.warn "Use 'brasero-unwrapped' instead of 'brasero-original'" brasero-unwrapped; # Added 2024-09-29
bro = throw "'bro' has been renamed to/replaced by 'zeek'"; # Converted to throw 2023-09-10
bs-platform = throw "'bs-platform' was removed as it was broken, development ended and 'melange' has superseded it"; # Added 2024-07-29

View File

@ -4167,7 +4167,7 @@ with pkgs;
bozohttpd-minimal = bozohttpd.override { minimal = true; };
brasero-original = lowPrio (callPackage ../tools/cd-dvd/brasero { });
brasero-unwrapped = callPackage ../tools/cd-dvd/brasero { };
brasero = callPackage ../tools/cd-dvd/brasero/wrapper.nix { };