Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
41 lines
767 B
Nix
41 lines
767 B
Nix
{
|
|
symlinkJoin,
|
|
makeWrapper,
|
|
geany,
|
|
vte,
|
|
}:
|
|
|
|
symlinkJoin {
|
|
name = "geany-with-vte-${geany.version}";
|
|
|
|
# TODO: add geany-plugins
|
|
paths = with geany; [
|
|
out
|
|
doc
|
|
man
|
|
];
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
postBuild = ''
|
|
# need to replace the directory since it is a symlink
|
|
rm -r $out/bin; mkdir $out/bin
|
|
makeWrapper ${geany}/bin/geany $out/bin/geany \
|
|
--prefix LD_LIBRARY_PATH : ${vte}/lib
|
|
'';
|
|
|
|
meta = {
|
|
# can't just "inherit (geany) meta;" because:
|
|
# error: derivation '/nix/store/...-geany-with-vte-2.0.drv' does not have wanted outputs 'man'
|
|
inherit (geany.meta)
|
|
description
|
|
longDescription
|
|
homepage
|
|
license
|
|
maintainers
|
|
platforms
|
|
mainProgram
|
|
;
|
|
};
|
|
}
|