Merge master into staging-next

authored by github-actions[bot] and committed by GitHub dc802b2e e15af378

+112 -67
+1 -1
nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
··· 7 7 <itemizedlist spacing="compact"> 8 8 <listitem> 9 9 <para> 10 - Support is planned until the end of April 2022, handing over to 10 + Support is planned until the end of June 2022, handing over to 11 11 22.05. 12 12 </para> 13 13 </listitem>
+1 -1
nixos/doc/manual/release-notes/rl-2111.section.md
··· 2 2 3 3 In addition to numerous new and upgraded packages, this release has the following highlights: 4 4 5 - - Support is planned until the end of April 2022, handing over to 22.05. 5 + - Support is planned until the end of June 2022, handing over to 22.05. 6 6 7 7 ## Highlights {#sec-release-21.11-highlights} 8 8
+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/editors/vscode/vscode.nix
··· 58 58 homepage = "https://code.visualstudio.com/"; 59 59 downloadPage = "https://code.visualstudio.com/Updates"; 60 60 license = licenses.unfree; 61 - maintainers = with maintainers; [ eadwu synthetica ]; 61 + maintainers = with maintainers; [ eadwu synthetica maxeaubrey ]; 62 62 platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" "aarch64-linux" "armv7l-linux" ]; 63 63 }; 64 64 }
+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/networking/cluster/nomad/generic.nix
··· 53 53 description = "A Distributed, Highly Available, Datacenter-Aware Scheduler"; 54 54 platforms = platforms.unix; 55 55 license = licenses.mpl20; 56 - maintainers = with maintainers; [ rushmorem pradeepchhetri endocrimes ]; 56 + maintainers = with maintainers; [ rushmorem pradeepchhetri endocrimes maxeaubrey ]; 57 57 }; 58 58 }
+1
pkgs/applications/networking/cluster/terraform/default.nix
··· 62 62 marsam 63 63 timstott 64 64 zimbatm 65 + maxeaubrey 65 66 ]; 66 67 }; 67 68 } // attrs');
+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";
+10
pkgs/applications/virtualization/qemu/default.nix
··· 86 86 patches = [ 87 87 ./fix-qemu-ga.patch 88 88 ./9p-ignore-noatime.patch 89 + (fetchpatch { 90 + name = "CVE-2021-3545.patch"; 91 + url = "https://gitlab.com/qemu-project/qemu/-/commit/121841b25d72d13f8cad554363138c360f1250ea.patch"; 92 + sha256 = "13dgfd8dmxcalh2nvb68iv0kyv4xxrvpdqdxf1h3bjr4451glag1"; 93 + }) 94 + (fetchpatch { 95 + name = "CVE-2021-3546.patch"; 96 + url = "https://gitlab.com/qemu-project/qemu/-/commit/9f22893adcb02580aee5968f32baa2cd109b3ec2.patch"; 97 + sha256 = "1vkhm9vl671y4cra60b6704339qk1h5dyyb3dfvmvpsvfyh2pm7n"; 98 + }) 89 99 ] ++ optional nixosTestRunner ./force-uid0-on-9p.patch 90 100 ++ optionals stdenv.hostPlatform.isMusl [ 91 101 (fetchpatch {
+1 -1
pkgs/data/themes/yaru/default.nix
··· 42 42 homepage = "https://github.com/ubuntu/yaru"; 43 43 license = with licenses; [ cc-by-sa-40 gpl3Plus lgpl21Only lgpl3Only ]; 44 44 platforms = platforms.linux; 45 - maintainers = with maintainers; [ fortuneteller2k ]; 45 + maintainers = with maintainers; [ fortuneteller2k maxeaubrey ]; 46 46 }; 47 47 }
+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/compilers/vala/default.nix
··· 100 100 homepage = "https://wiki.gnome.org/Projects/Vala"; 101 101 license = licenses.lgpl21Plus; 102 102 platforms = platforms.unix; 103 - maintainers = with maintainers; [ antono jtojnar peterhoeg ]; 103 + maintainers = with maintainers; [ antono jtojnar peterhoeg maxeaubrey ]; 104 104 }; 105 105 }); 106 106
+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."
+28
pkgs/misc/emulators/fs-uae-launcher/default.nix
··· 1 + { stdenv, lib, fetchurl, makeWrapper, python3, gettext 2 + , pyqt5, setuptools, requests 3 + }: 4 + 5 + stdenv.mkDerivation rec { 6 + pname = "fs-uae-launcher"; 7 + version = "3.0.5"; 8 + 9 + src = fetchurl { 10 + url = "https://fs-uae.net/stable/${version}/${pname}-${version}.tar.gz"; 11 + sha256 = "1dknra4ngz7bpppwqghmza1q68pn1yaw54p9ba0f42zwp427ly97"; 12 + }; 13 + 14 + makeFlags = [ "prefix=$(out)" ]; 15 + nativeBuildInputs = [ makeWrapper python3 gettext ]; 16 + buildInputs = [ pyqt5 setuptools requests ]; 17 + postInstall = '' 18 + wrapProgram $out/bin/fs-uae-launcher --set PYTHONPATH "$PYTHONPATH" 19 + ''; 20 + 21 + meta = { 22 + description = "Graphical front-end for the FS-UAE emulator"; 23 + license = lib.licenses.gpl2Plus; 24 + homepage = "https://fs-uae.net"; 25 + maintainers = with lib; [ maintainers.sander ]; 26 + platforms = [ "i686-linux" "x86_64-linux" ]; 27 + }; 28 + }
+1 -1
pkgs/os-specific/linux/ell/default.nix
··· 38 38 ''; 39 39 license = licenses.lgpl21Plus; 40 40 platforms = platforms.linux; 41 - maintainers = with maintainers; [ mic92 dtzWill ]; 41 + maintainers = with maintainers; [ mic92 dtzWill maxeaubrey ]; 42 42 }; 43 43 }
+1 -1
pkgs/os-specific/linux/iwd/default.nix
··· 91 91 description = "Wireless daemon for Linux"; 92 92 license = licenses.lgpl21Plus; 93 93 platforms = platforms.linux; 94 - maintainers = with maintainers; [ dtzWill fpletz ]; 94 + maintainers = with maintainers; [ dtzWill fpletz maxeaubrey ]; 95 95 }; 96 96 }
+15 -15
pkgs/os-specific/linux/kernel/hardened/patches.json
··· 1 1 { 2 2 "4.14": { 3 3 "extra": "-hardened1", 4 - "name": "linux-hardened-4.14.238-hardened1.patch", 5 - "sha256": "13wld3dm9ymwcsk5f06l64z9q49ff7rh7dqfqxxhkngdx2i1h566", 6 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.238-hardened1/linux-hardened-4.14.238-hardened1.patch" 4 + "name": "linux-hardened-4.14.239-hardened1.patch", 5 + "sha256": "1yfg6c75y1dp627qn8c4795sc9vwywc5dl95ngg8zk15n5d7j9in", 6 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.239-hardened1/linux-hardened-4.14.239-hardened1.patch" 7 7 }, 8 8 "4.19": { 9 9 "extra": "-hardened1", 10 - "name": "linux-hardened-4.19.196-hardened1.patch", 11 - "sha256": "1wna5j1g1703gl4xw4x5z8dmc8gjqg879zq4xnmlyc0vryqjrxyq", 12 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.196-hardened1/linux-hardened-4.19.196-hardened1.patch" 10 + "name": "linux-hardened-4.19.197-hardened1.patch", 11 + "sha256": "1cbcas5kl6k8hn60p08pvw073mrv8lkrav3pc9sxvdcscdbwkkpr", 12 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.197-hardened1/linux-hardened-4.19.197-hardened1.patch" 13 13 }, 14 14 "5.10": { 15 15 "extra": "-hardened1", 16 - "name": "linux-hardened-5.10.48-hardened1.patch", 17 - "sha256": "1drfh4ljiih4y5fn2bvg15wrmz10s50q5qyhn89r63b5qkb1lp21", 18 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.48-hardened1/linux-hardened-5.10.48-hardened1.patch" 16 + "name": "linux-hardened-5.10.50-hardened1.patch", 17 + "sha256": "0z57cdvyaarl5p0b6sj93pag34wvf128s30ymkc4m50a60kp7cr8", 18 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.50-hardened1/linux-hardened-5.10.50-hardened1.patch" 19 19 }, 20 20 "5.12": { 21 21 "extra": "-hardened1", 22 - "name": "linux-hardened-5.12.15-hardened1.patch", 23 - "sha256": "1d81z67y9659icgmkchj0y2jlcs4nh4grlzf7ppbq6vmrr92xq8x", 24 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.12.15-hardened1/linux-hardened-5.12.15-hardened1.patch" 22 + "name": "linux-hardened-5.12.17-hardened1.patch", 23 + "sha256": "09vh04a1sa80shm0z5if31j5r8s4syrqv4i22q5pnnfnlzhbqk59", 24 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.12.17-hardened1/linux-hardened-5.12.17-hardened1.patch" 25 25 }, 26 26 "5.4": { 27 27 "extra": "-hardened1", 28 - "name": "linux-hardened-5.4.130-hardened1.patch", 29 - "sha256": "0d7q6pkl74hkx65p25jxjjky08zdprsfbcyik9cdlsfrbiidwn53", 30 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.130-hardened1/linux-hardened-5.4.130-hardened1.patch" 28 + "name": "linux-hardened-5.4.132-hardened1.patch", 29 + "sha256": "0a4n8ss16qqbrbxajlad4j7nc10ipdnl70yz6ppryyw94i5lf5pb", 30 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.132-hardened1/linux-hardened-5.4.132-hardened1.patch" 31 31 } 32 32 }
+2 -2
pkgs/os-specific/linux/kernel/linux-4.14.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "4.14.238"; 6 + version = "4.14.239"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 16 - sha256 = "1phjgm1fhyfpm2h9b2bngcbh91v2qrxcm7vma86q7pdqrcbh1fih"; 16 + sha256 = "167zwm3giizv42m0xjz71xnb2swlwiaw0xw0dg8j8mb74hz1drx0"; 17 17 }; 18 18 19 19 kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_4_14 ];
+2 -2
pkgs/os-specific/linux/kernel/linux-4.19.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "4.19.196"; 6 + version = "4.19.197"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 16 - sha256 = "0liapgaczv6lq7223wnq2cbwfb6w93iw14dv1xidcb3bnakm4h5f"; 16 + sha256 = "10kj442qaky6rpl65k5rrvd3p6mdgz4p321zvf4s312ixfdja0g6"; 17 17 }; 18 18 19 19 kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_4_19 ];
+2 -2
pkgs/os-specific/linux/kernel/linux-5.10.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.10.48"; 6 + version = "5.10.50"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "0pn24bkz9mkphv9f634117zam0ak6q3pbpfwv0l5kf71h0s1klfv"; 16 + sha256 = "0dmlpy9k7am99495bxcm46i4y6g34d1fzdkzz3wgzb4mgmx35nlb"; 17 17 }; 18 18 19 19 kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_10 ];
+2 -2
pkgs/os-specific/linux/kernel/linux-5.12.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.12.15"; 6 + version = "5.12.17"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "1nlgwcxfhxzf5wak8c0gamn4k8vpdllzqlpqqn5fa08cdjcymz27"; 16 + sha256 = "1ghyqxfxslxzr7273vj2yn14pkdnkja3wk50xxhavpvf87i8c40j"; 17 17 }; 18 18 19 19 kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_12 ];
+2 -2
pkgs/os-specific/linux/kernel/linux-5.4.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.4.130"; 6 + version = "5.4.132"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "0ywwy6g0fd05fxgwsrycz2l6khjljxa3qbi6hywp3rjgmgxp2ak6"; 16 + sha256 = "1vq0dmrn7gl2vprm08l8by5ja3xjgggrcd38vqg7b7jpnfzssrl4"; 17 17 }; 18 18 19 19 kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_4 ];
+2 -2
pkgs/os-specific/linux/kernel/linux-rt-5.10.nix
··· 6 6 , ... } @ args: 7 7 8 8 let 9 - version = "5.10.47-rt45"; # updated by ./update-rt.sh 9 + version = "5.10.47-rt46"; # updated by ./update-rt.sh 10 10 branch = lib.versions.majorMinor version; 11 11 kversion = builtins.elemAt (lib.splitString "-" version) 0; 12 12 in buildLinux (args // { ··· 25 25 name = "rt"; 26 26 patch = fetchurl { 27 27 url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz"; 28 - sha256 = "0s3y636ymrhm8rg6n47wdk1pvvmpsnynmyhyy5681f2pw5z2c1ay"; 28 + sha256 = "12jnnwnh3bgz2ygc173r45sbqm74rz3f2nlp7m2fb8dlxdby460q"; 29 29 }; 30 30 }; in [ rt-patch ] ++ kernelPatches; 31 31
+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
pkgs/servers/plex/raw.nix
··· 89 89 lnl7 90 90 pjones 91 91 thoughtpolice 92 + maxeaubrey 92 93 ]; 93 94 description = "Media library streaming server"; 94 95 longDescription = ''
+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}
+4
pkgs/top-level/all-packages.nix
··· 31494 31494 31495 31495 fsuae = callPackage ../misc/emulators/fs-uae { }; 31496 31496 31497 + fsuae-launcher = callPackage ../misc/emulators/fs-uae-launcher { 31498 + inherit (python3Packages) pyqt5 setuptools requests; 31499 + }; 31500 + 31497 31501 putty = callPackage ../applications/networking/remote/putty { 31498 31502 gtk2 = gtk2-x11; 31499 31503 };