mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
universal-ctags: 2018-07-23 -> 2019-07-30
This commit is contained in:
parent
11aebf406f
commit
137ce9ec09
1 changed files with 9 additions and 3 deletions
|
@ -2,13 +2,13 @@
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "universal-ctags-${version}";
|
||||
version = "2018-07-23";
|
||||
version = "unstable-2019-07-30";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "universal-ctags";
|
||||
repo = "ctags";
|
||||
rev = "3522685695ad3312cf4b19399e0c44f3395dd089";
|
||||
sha256 = "1f67hy8c2yr9z4ydsqd7wg8iagzn01qjw2ccx6g8mngv3i3jz9mv";
|
||||
rev = "920e7910146915e5cae367bc9f135ffd8b042042";
|
||||
sha256 = "14n3ix77rkhq6vq6kspmgjrmm0kg0f8cxikyqdq281sbnfq8bajn";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig pythonPackages.docutils ];
|
||||
|
@ -21,6 +21,12 @@ stdenv.mkDerivation rec {
|
|||
|
||||
configureFlags = [ "--enable-tmpdir=/tmp" ];
|
||||
|
||||
postPatch = ''
|
||||
# Remove source of non-determinism
|
||||
substituteInPlace main/options.c \
|
||||
--replace "printf (\" Compiled: %s, %s\n\", __DATE__, __TIME__);" ""
|
||||
'';
|
||||
|
||||
postConfigure = ''
|
||||
sed -i 's|/usr/bin/env perl|${perl}/bin/perl|' misc/optlib2c
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue