about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-07-25 06:52:22 +0000
committerGitHub <noreply@github.com>2021-07-25 06:52:22 +0000
commit6070331967d380495f732b4467f707c0c7da2500 (patch)
tree0b1331b9b6f6167a3808cdaf6c33a605f4939ad8 /pkgs/development/tools
parent6674d07ef13d359619d97e1d177bd489da7bf028 (diff)
parent987902c43446fbcf614193a965d81946b0861aaf (diff)
downloadnixlib-6070331967d380495f732b4467f707c0c7da2500.tar
nixlib-6070331967d380495f732b4467f707c0c7da2500.tar.gz
nixlib-6070331967d380495f732b4467f707c0c7da2500.tar.bz2
nixlib-6070331967d380495f732b4467f707c0c7da2500.tar.lz
nixlib-6070331967d380495f732b4467f707c0c7da2500.tar.xz
nixlib-6070331967d380495f732b4467f707c0c7da2500.tar.zst
nixlib-6070331967d380495f732b4467f707c0c7da2500.zip
Merge pull request #131408 from Stunkymonkey/lemon-phases
lemon: deprecate phases
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/parsing/lemon/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/parsing/lemon/default.nix b/pkgs/development/tools/parsing/lemon/default.nix
index 3db9e0f6d9ed..9c8786950d22 100644
--- a/pkgs/development/tools/parsing/lemon/default.nix
+++ b/pkgs/development/tools/parsing/lemon/default.nix
@@ -19,7 +19,7 @@ in stdenv.mkDerivation {
   pname = "lemon";
   version = "1.69";
 
-  phases = [ "buildPhase" "installPhase" ];
+  dontUnpack = true;
 
   buildPhase = ''
     sh -xc "$CC ${srcs.lemon} -o lemon"