summary refs log tree commit diff
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-07-17 21:26:51 +0200
committerFelix Buehler <account@buehler.rocks>2021-07-17 21:26:51 +0200
commita80435dac232370e96bc41ae05790ae7ce5deb13 (patch)
treedab250dbae06fa1b1b3cf8f25feb19b19091bfba
parent0ea3c6b06f7344f2f0359280d723b5206a05e2d3 (diff)
downloadnixpkgs-a80435dac232370e96bc41ae05790ae7ce5deb13.tar
nixpkgs-a80435dac232370e96bc41ae05790ae7ce5deb13.tar.gz
nixpkgs-a80435dac232370e96bc41ae05790ae7ce5deb13.tar.bz2
nixpkgs-a80435dac232370e96bc41ae05790ae7ce5deb13.tar.lz
nixpkgs-a80435dac232370e96bc41ae05790ae7ce5deb13.tar.xz
nixpkgs-a80435dac232370e96bc41ae05790ae7ce5deb13.tar.zst
nixpkgs-a80435dac232370e96bc41ae05790ae7ce5deb13.zip
runningx: deprecate phases
-rw-r--r--pkgs/tools/X11/runningx/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/X11/runningx/default.nix b/pkgs/tools/X11/runningx/default.nix
index ae0e5b89a61..b3b5233564a 100644
--- a/pkgs/tools/X11/runningx/default.nix
+++ b/pkgs/tools/X11/runningx/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
 
   buildInputs = [ libX11 ];
 
-  phases = [ "buildPhase" "installPhase" ];
+  dontUnpack = true;
 
   buildPhase = ''
     cc -O2 -o RunningX $(pkg-config --cflags --libs x11) $src