summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-07-25 01:37:42 +0200
committerFelix Buehler <account@buehler.rocks>2021-07-25 01:37:47 +0200
commit987902c43446fbcf614193a965d81946b0861aaf (patch)
tree4313ed82806def8b4c3c2d68133339b3fb2f7dec /pkgs/development/tools
parent8f67e19b843e590ff739cc6e5691a392861bb406 (diff)
downloadnixpkgs-987902c43446fbcf614193a965d81946b0861aaf.tar
nixpkgs-987902c43446fbcf614193a965d81946b0861aaf.tar.gz
nixpkgs-987902c43446fbcf614193a965d81946b0861aaf.tar.bz2
nixpkgs-987902c43446fbcf614193a965d81946b0861aaf.tar.lz
nixpkgs-987902c43446fbcf614193a965d81946b0861aaf.tar.xz
nixpkgs-987902c43446fbcf614193a965d81946b0861aaf.tar.zst
nixpkgs-987902c43446fbcf614193a965d81946b0861aaf.zip
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 3db9e0f6d9e..9c8786950d2 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"