packages/fragments-remote: init
This commit is contained in:
parent
00378f0ef3
commit
0bc49b1cd3
1 changed files with 12 additions and 0 deletions
|
@ -7,6 +7,18 @@ super: rec {
|
||||||
|
|
||||||
doas-interactive = patch-rename super.doas "doas-interactive" "patches/base/doas";
|
doas-interactive = patch-rename super.doas "doas-interactive" "patches/base/doas";
|
||||||
|
|
||||||
|
fragments-remote = let
|
||||||
|
fakeTransmission = super.writeShellScriptBin "transmission-daemon" ''
|
||||||
|
exec ${super.coreutils}/bin/sleep +Infinity
|
||||||
|
'';
|
||||||
|
in super.fragments.overrideAttrs (_: {
|
||||||
|
preFixup = ''
|
||||||
|
gappsWrapperArgs+=(
|
||||||
|
--prefix PATH : "${super.lib.makeBinPath [ fakeTransmission ] }"
|
||||||
|
)
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
|
||||||
lain-ipfs = patch-rename super.ipfs "lain-ipfs" "patches/base/ipfs";
|
lain-ipfs = patch-rename super.ipfs "lain-ipfs" "patches/base/ipfs";
|
||||||
|
|
||||||
gnome-control-center = patch' super.gnome.gnome-control-center;
|
gnome-control-center = patch' super.gnome.gnome-control-center;
|
||||||
|
|
Loading…
Reference in a new issue