From a865d17b7cd1599f6d0e5512147e15bbc75561ba Mon Sep 17 00:00:00 2001 From: Bert Moens Date: Mon, 4 Dec 2017 20:23:35 +0100 Subject: [PATCH] ed: fix docs location by removing installFlags and configureFlags. Fixes #32159 --- pkgs/applications/editors/ed/default.nix | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pkgs/applications/editors/ed/default.nix b/pkgs/applications/editors/ed/default.nix index ee5afe500ef..1f6a9b89676 100644 --- a/pkgs/applications/editors/ed/default.nix +++ b/pkgs/applications/editors/ed/default.nix @@ -26,13 +26,6 @@ stdenv.mkDerivation rec { */ doCheck = !(hostPlatform.isDarwin || hostPlatform != buildPlatform); - installFlags = [ "DESTDIR=$(out)" ]; - - configureFlags = [ - "--exec-prefix=${stdenv.cc.targetPrefix}" - "CC=${stdenv.cc.targetPrefix}cc" - ]; - meta = { description = "An implementation of the standard Unix editor";