treewide: convert phases that contain ":" to dont* = true (#130500)

authored by

Sandro and committed by
GitHub
d5bd34eb 967d40be

+33 -32
+1 -1
nixos/modules/services/continuous-integration/hercules-ci-agent/common.nix
··· 105 105 pkgs.stdenv.mkDerivation { 106 106 name = "hercules-ci-check-system-nix-src"; 107 107 inherit (config.nix.package) src patches; 108 - configurePhase = ":"; 108 + dontConfigure = true; 109 109 buildPhase = '' 110 110 echo "Checking in-memory pathInfoCache expiry" 111 111 if ! grep 'PathInfoCacheValue' src/libstore/store-api.hh >/dev/null; then
+1 -2
nixos/modules/services/hardware/sane_extra_backends/brscan4_etc_files.nix
··· 54 54 ${addAllNetDev netDevices} 55 55 ''; 56 56 57 - installPhase = ":"; 58 - 57 + dontInstall = true; 59 58 dontStrip = true; 60 59 dontPatchELF = true; 61 60
+1 -1
pkgs/applications/editors/emacs/elisp-packages/cedille/default.nix
··· 8 8 9 9 buildInputs = [ emacs ]; 10 10 11 - buildPhase = ":"; 11 + dontBuild = true; 12 12 13 13 installPhase = '' 14 14 install -d $out/share/emacs/site-lisp
+2 -2
pkgs/applications/editors/kakoune/plugins/build-kakoune-plugin.nix
··· 27 27 }); 28 28 29 29 buildKakounePluginFrom2Nix = attrs: buildKakounePlugin ({ 30 - buildPhase = ":"; 31 - configurePhase = ":"; 30 + dontBuild = true; 31 + dontConfigure = true; 32 32 } // attrs); 33 33 }
+1 -1
pkgs/applications/misc/thinking-rock/default.nix
··· 31 31 chmod +x $out/bin/thinkingrock 32 32 ''; 33 33 34 - installPhase = ":"; 34 + dontInstall = true; 35 35 36 36 meta = with lib; { 37 37 description = "Task management system";
+1 -1
pkgs/applications/science/biology/macse/default.nix
··· 11 11 12 12 nativeBuildInputs = [ makeWrapper ]; 13 13 14 + dontUnpack = true; 14 15 dontBuild = true; 15 - unpackPhase = ":"; 16 16 17 17 installPhase = '' 18 18 runHook preInstall
+1 -1
pkgs/applications/video/vdr/plugins.nix
··· 225 225 mkdir -p $out/lib/vdr 226 226 ''; 227 227 228 - installPhase = ":"; 228 + dontInstall = true; 229 229 230 230 meta = with lib; { 231 231 homepage = "https://projects.vdr-developer.org/projects/plg-text2skin";
+2 -2
pkgs/development/compilers/apache-flex-sdk/default.nix
··· 19 19 20 20 buildInputs = [ jre ]; 21 21 22 - buildPhase = ":"; 22 + dontBuild = true; 23 23 24 24 postPatch = '' 25 25 shopt -s extglob ··· 45 45 cp ${playerglobal} $t/frameworks/libs/player/${playerglobal_ver}/playerglobal.swc 46 46 ''; 47 47 48 - fixupPhase = ":"; 48 + dontFixup = true; 49 49 50 50 meta = with lib; { 51 51 description = "Flex SDK for Adobe Flash / ActionScript";
+1 -1
pkgs/development/libraries/nanopb/test-message-with-annotations/default.nix
··· 9 9 # proto_path. By default the current directory is automatically added to the 10 10 # proto_path. I tried using --proto_path ${./.} ${./simple.proto} and it did 11 11 # not work because they end up in the store at different locations. 12 - installPhase = ":"; 12 + dontInstall = true; 13 13 buildPhase = '' 14 14 mkdir $out 15 15
+1 -1
pkgs/development/libraries/nanopb/test-message-with-options/default.nix
··· 9 9 # proto_path. By default the current directory is automatically added to the 10 10 # proto_path. I tried using --proto_path ${./.} ${./simple.proto} and it did 11 11 # not work because they end up in the store at different locations. 12 - installPhase = ":"; 12 + dontInstall = true; 13 13 buildPhase = '' 14 14 mkdir $out 15 15
+1 -1
pkgs/development/libraries/nanopb/test-simple-proto2/default.nix
··· 9 9 # proto_path. By default the current directory is automatically added to the 10 10 # proto_path. I tried using --proto_path ${./.} ${./simple.proto} and it did 11 11 # not work because they end up in the store at different locations. 12 - installPhase = ":"; 12 + dontInstall = true; 13 13 buildPhase = '' 14 14 mkdir $out 15 15
+1 -1
pkgs/development/libraries/nanopb/test-simple-proto3/default.nix
··· 9 9 # proto_path. By default the current directory is automatically added to the 10 10 # proto_path. I tried using --proto_path ${./.} ${./simple.proto} and it did 11 11 # not work because they end up in the store at different locations. 12 - installPhase = ":"; 12 + dontInstall = true; 13 13 buildPhase = '' 14 14 mkdir $out 15 15
+1 -1
pkgs/development/python-modules/pytest-astropy/default.nix
··· 38 38 ]; 39 39 40 40 # pytest-astropy is a meta package and has no tests 41 - checkPhase = ":"; 41 + doCheck = false; 42 42 43 43 meta = with lib; { 44 44 description = "Meta-package containing dependencies for testing";
+1 -1
pkgs/development/ruby-modules/with-packages/default.nix
··· 57 57 nativeBuildInputs = [ makeWrapper ]; 58 58 buildInputs = [ selected ruby ]; 59 59 60 - unpackPhase = ":"; 60 + dontUnpack = true; 61 61 62 62 installPhase = '' 63 63 for i in ${ruby}/bin/* ${gemEnv}/bin/*; do
+1 -1
pkgs/development/tools/misc/gede/default.nix
··· 17 17 18 18 dontUseQmakeConfigure = true; 19 19 20 - buildPhase = ":"; 20 + dontBuild = true; 21 21 22 22 installPhase = '' 23 23 python build.py install --verbose --prefix="$out"
+2 -1
pkgs/development/tools/parsing/tree-sitter/grammar.nix
··· 33 33 buildInputs = [ tree-sitter ]; 34 34 35 35 dontUnpack = true; 36 - configurePhase = ":"; 36 + dontConfigure = true; 37 + 37 38 buildPhase = '' 38 39 runHook preBuild 39 40 scanner_cc="$src/src/scanner.cc"
+1 -1
pkgs/development/web/now-cli/default.nix
··· 14 14 gunzip -c $curSrc > now-linux 15 15 ''; 16 16 17 - buildPhase = ":"; 17 + dontBuild = true; 18 18 19 19 installPhase = '' 20 20 mkdir $out
+1 -2
pkgs/misc/apulse/pressureaudio.nix
··· 9 9 nativeBuildInputs = [ pkg-config intltool autoreconfHook ]; 10 10 11 11 dontConfigure = true; 12 - 13 - buildPhase = ":"; 12 + dontBuild = true; 14 13 15 14 installPhase = '' 16 15 echo "Copying libraries from apulse."
+1 -1
pkgs/os-specific/linux/wooting-udev-rules/default.nix
··· 7 7 # Source: https://wooting.helpscoutdocs.com/article/68-wootility-configuring-device-access-for-wootility-under-linux-udev-rules 8 8 src = [ ./wooting.rules ]; 9 9 10 - unpackPhase = ":"; 10 + dontUnpack = true; 11 11 12 12 installPhase = '' 13 13 install -Dpm644 $src $out/lib/udev/rules.d/70-wooting.rules
+1 -1
pkgs/servers/dict/dictd-db.nix
··· 12 12 inherit src; 13 13 locale = _locale; 14 14 dbName = _name; 15 - buildPhase = ":"; 15 + dontBuild = true; 16 16 unpackPhase = '' 17 17 tar xf ${src} 18 18 '';
+1 -1
pkgs/servers/foundationdb/vsmake.nix
··· 21 21 }; 22 22 23 23 dontConfigure = true; 24 - buildPhase = ":"; 24 + dontBuild = true; 25 25 installPhase = "mkdir -p $out/include && cp -R boost $out/include/"; 26 26 }; 27 27
+1 -1
pkgs/servers/sql/postgresql/ext/pgjwt.nix
··· 11 11 sha256 = "1riz0xvwb6y02j0fljbr9hcbqb2jqs4njlivmavy9ysbcrrv1vrf"; 12 12 }; 13 13 14 - buildPhase = ":"; 14 + dontBuild = true; 15 15 installPhase = '' 16 16 mkdir -p $out/share/postgresql/extension 17 17 cp pg*sql *.control $out/share/postgresql/extension
+1 -1
pkgs/tools/backup/ori/default.nix
··· 17 17 scons PREFIX=$out WITH_ORILOCAL=1 install 18 18 ''; 19 19 20 - installPhase = ":"; 20 + dontInstall = true; 21 21 22 22 meta = with lib; { 23 23 description = "A secure distributed file system";
+1 -1
pkgs/tools/misc/sweep-visualizer/default.nix
··· 21 21 ar p "$src" data.tar.xz | tar xJ 22 22 ''; 23 23 24 - buildPhase = ":"; 24 + dontBuild = true; 25 25 26 26 installPhase = '' 27 27 mkdir -p $out/bin $out/share/sweep-visualizer
+1 -1
pkgs/tools/misc/zsh-autoenv/default.nix
··· 11 11 sha256 = "004svkfzhc3ab6q2qvwzgj36wvicg5bs8d2gcibx6adq042di7zj"; 12 12 }; 13 13 14 - buildPhase = ":"; 14 + dontBuild = true; 15 15 16 16 installPhase = '' 17 17 mkdir -p $out/{bin,share}
+4 -2
pkgs/tools/system/uefitool/common.nix
··· 20 20 buildInputs = [ qtbase ]; 21 21 nativeBuildInputs = [ qmake cmake zip ]; 22 22 23 - configurePhase = ":"; 24 - buildPhase = "bash unixbuild.sh"; 23 + dontConfigure = true; 24 + buildPhase = '' 25 + bash unixbuild.sh 26 + ''; 25 27 26 28 installPhase = '' 27 29 mkdir -p "$out"/bin
+1 -1
pkgs/tools/typesetting/tex/texlive/bin.nix
··· 309 309 preConfigure = '' 310 310 touch Makefile.PL 311 311 ''; 312 - buildPhase = ":"; 312 + dontBuild = true; 313 313 installPhase = '' 314 314 install -D ./scripts/latexindent/latexindent.pl "$out"/bin/latexindent 315 315 mkdir -p "$out"/${perl.libPrefix}