From e281a287b2b0e83cdb6257e03d900f3644a26744 Mon Sep 17 00:00:00 2001 From: "Yury G. Kudryashov" Date: Wed, 6 Feb 2008 19:01:06 +0000 Subject: [PATCH] vim: now compiles in stdenv-updates (-lutil -lpthread) svn path=/nixpkgs/branches/stdenv-updates/; revision=10525 --- pkgs/applications/editors/vim/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/editors/vim/default.nix b/pkgs/applications/editors/vim/default.nix index 6839f337b6a4..2f1677622a9c 100644 --- a/pkgs/applications/editors/vim/default.nix +++ b/pkgs/applications/editors/vim/default.nix @@ -55,6 +55,8 @@ args.stdenv.mkDerivation { preBuild="touch src/auto/link.sed"; configureFlags = args.lib.condConcat "" configFlags check; + NIX_LDFLAGS = "-lpthread -lutil"; + meta = { description = "The most popular clone of the VI editor"; homepage = http://www.vim.org;