4269eb17dc
see issue #43716
18 lines
375 B
Nix
18 lines
375 B
Nix
{ lib, symlinkJoin, brasero-original, cdrtools, makeWrapper }:
|
|
|
|
let
|
|
binPath = lib.makeBinPath [ cdrtools ];
|
|
in symlinkJoin {
|
|
name = "brasero-${brasero-original.version}";
|
|
|
|
paths = [ brasero-original ];
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
postBuild = ''
|
|
wrapProgram $out/bin/brasero \
|
|
--prefix PATH ':' ${binPath}
|
|
'';
|
|
|
|
inherit (brasero-original) meta;
|
|
}
|