mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
compton: use stub git function instead of patching
This commit is contained in:
parent
0658554ccc
commit
585d2d79a1
1 changed files with 3 additions and 4 deletions
|
@ -89,10 +89,9 @@ let
|
|||
libxdg_basedir
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace meson.build \
|
||||
--replace "run_command('git', 'describe')" \
|
||||
"run_command('echo', 'v${version}')"
|
||||
preBuild = ''
|
||||
git() { echo "v${version}"; }
|
||||
export -f git
|
||||
'';
|
||||
|
||||
NIX_CFLAGS_COMPILE = [ "-fno-strict-aliasing" ];
|
||||
|
|
Loading…
Reference in a new issue