uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
24
pkgs/applications/editors/geany/with-vte.nix
Normal file
24
pkgs/applications/editors/geany/with-vte.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{ symlinkJoin
|
||||
, makeWrapper
|
||||
, geany
|
||||
, lndir
|
||||
, 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
|
||||
'';
|
||||
|
||||
inherit (geany.meta);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue