···67pythonPackages.buildPythonApplication rec {
8 pname = "git-up";
9- version = "1.6.1";
01011 src = fetchPypi {
12- inherit pname version;
13- sha256 = "0gs791yb0cndg9879vayvcj329jwhzpk6wrf9ri12l5hg8g490za";
014 };
15000016 # git should be on path for tool to work correctly
17 propagatedBuildInputs = [
18 git
19 ] ++ (with pythonPackages; [
20- click
21 colorama
22- docopt
23 gitpython
24- six
25 termcolor
26 ]);
2728- nativeCheckInputs = [ git pythonPackages.nose ]; # git needs to be on path
000029 # 1. git fails to run as it cannot detect the email address, so we set it
30 # 2. $HOME is by default not a valid dir, so we have to set that too
31 # https://github.com/NixOS/nixpkgs/issues/12591
···67pythonPackages.buildPythonApplication rec {
8 pname = "git-up";
9+ version = "2.2.0";
10+ format = "pyproject";
1112 src = fetchPypi {
13+ pname = "git_up";
14+ inherit version;
15+ hash = "sha256-GTX2IWLQ48yWfPnmtEa9HJ5umQLttqgTlgZQlaWgeE4=";
16 };
1718+ nativeBuildInputs = with pythonPackages; [
19+ poetry-core
20+ ];
21+22 # git should be on path for tool to work correctly
23 propagatedBuildInputs = [
24 git
25 ] ++ (with pythonPackages; [
026 colorama
027 gitpython
028 termcolor
29 ]);
3031+ nativeCheckInputs = [
32+ git
33+ pythonPackages.pytestCheckHook
34+ ];
35+36 # 1. git fails to run as it cannot detect the email address, so we set it
37 # 2. $HOME is by default not a valid dir, so we have to set that too
38 # https://github.com/NixOS/nixpkgs/issues/12591
+3-5
pkgs/applications/virtualization/qemu/default.nix
···47 + lib.optionalString xenSupport "-xen"
48 + lib.optionalString hostCpuOnly "-host-cpu-only"
49 + lib.optionalString nixosTestRunner "-for-vm-tests";
50- version = "8.0.4";
5152 src = fetchurl {
53 url = "https://download.qemu.org/qemu-${finalAttrs.version}.tar.xz";
54- hash = "sha256-gcgX3aOK+Vi+W+8abPVbZYuy0/uHwealcd5reyxEUWw=";
55 };
5657 depsBuildBuild = [ buildPackages.stdenv.cc ]
···153 "--enable-tools"
154 "--localstatedir=/var"
155 "--sysconfdir=/etc"
156- # Always use our Meson, not the bundled version, which doesn't
157- # have our patches and will be subtly broken because of that.
158- "--meson=meson"
159 "--cross-prefix=${stdenv.cc.targetPrefix}"
160 (lib.enableFeature guestAgentSupport "guest-agent")
161 ] ++ lib.optional numaSupport "--enable-numa"
···219220 # point tests towards correct binaries
221 substituteInPlace ../tests/unit/test-qga.c \
0222 --replace '/bin/echo' "$(type -P echo)"
223 substituteInPlace ../tests/unit/test-io-channel-command.c \
224 --replace '/bin/socat' "$(type -P socat)"
···5 owner = "uwplse";
6 inherit version;
7 defaultVersion = with lib.versions; lib.switch coq.coq-version [
8- { case = range "8.9" "8.17"; out = "20230107"; }
9 { case = range "8.6" "8.16"; out = "20210328"; }
10 { case = range "8.5" "8.13"; out = "20181102"; }
11 ] null;
···5 owner = "uwplse";
6 inherit version;
7 defaultVersion = with lib.versions; lib.switch coq.coq-version [
8+ { case = range "8.9" "8.18"; out = "20230107"; }
9 { case = range "8.6" "8.16"; out = "20210328"; }
10 { case = range "8.5" "8.13"; out = "20181102"; }
11 ] null;
+1-1
pkgs/development/coq-modules/Verdi/default.nix
···6 owner = "uwplse";
7 inherit version;
8 defaultVersion = with lib.versions; lib.switch coq.coq-version [
9- { case = range "8.9" "8.17"; out = "20230503"; }
10 { case = range "8.7" "8.16"; out = "20211026"; }
11 { case = range "8.7" "8.14"; out = "20210524"; }
12 { case = range "8.7" "8.13"; out = "20200131"; }
···6 owner = "uwplse";
7 inherit version;
8 defaultVersion = with lib.versions; lib.switch coq.coq-version [
9+ { case = range "8.9" "8.18"; out = "20230503"; }
10 { case = range "8.7" "8.16"; out = "20211026"; }
11 { case = range "8.7" "8.14"; out = "20210524"; }
12 { case = range "8.7" "8.13"; out = "20200131"; }
···5 owner = "coq-ext-lib";
6 inherit version;
7 defaultVersion = with lib.versions; lib.switch coq.coq-version [
8- { case = range "8.11" "8.17"; out = "0.11.8"; }
9 { case = range "8.8" "8.16"; out = "0.11.6"; }
10 { case = range "8.8" "8.14"; out = "0.11.4"; }
11 { case = range "8.8" "8.13"; out = "0.11.3"; }
···5 owner = "coq-ext-lib";
6 inherit version;
7 defaultVersion = with lib.versions; lib.switch coq.coq-version [
8+ { case = range "8.11" "8.18"; out = "0.11.8"; }
9 { case = range "8.8" "8.16"; out = "0.11.6"; }
10 { case = range "8.8" "8.14"; out = "0.11.4"; }
11 { case = range "8.8" "8.13"; out = "0.11.3"; }
···6 owner = "thery";
7 inherit version;
8 defaultVersion = with lib.versions; lib.switch coq.coq-version [
9- { case = range "8.14" "8.17"; out = "8.17"; }
10 { case = range "8.12" "8.16"; out = "8.15"; }
11 { case = range "8.10" "8.11"; out = "8.10"; }
12 { case = range "8.8" "8.9"; out = "8.8"; }
···6 owner = "thery";
7 inherit version;
8 defaultVersion = with lib.versions; lib.switch coq.coq-version [
9+ { case = range "8.14" "8.18"; out = "8.17"; }
10 { case = range "8.12" "8.16"; out = "8.15"; }
11 { case = range "8.10" "8.11"; out = "8.10"; }
12 { case = range "8.8" "8.9"; out = "8.8"; }
···7 domain = "gitlab.inria.fr";
8 inherit version;
9 defaultVersion = with lib.versions; lib.switch coq.coq-version [
10- { case = range "8.12" "8.17"; out = "3.4.0"; }
11 { case = range "8.12" "8.17"; out = "3.3.0"; }
12 { case = range "8.8" "8.16"; out = "3.2.0"; }
13 { case = range "8.8" "8.13"; out = "3.1.0"; }
···7 domain = "gitlab.inria.fr";
8 inherit version;
9 defaultVersion = with lib.versions; lib.switch coq.coq-version [
10+ { case = range "8.12" "8.18"; out = "3.4.0"; }
11 { case = range "8.12" "8.17"; out = "3.3.0"; }
12 { case = range "8.8" "8.16"; out = "3.2.0"; }
13 { case = range "8.8" "8.13"; out = "3.1.0"; }
+1-1
pkgs/development/coq-modules/deriving/default.nix
···89 inherit version;
10 defaultVersion = with lib.versions; lib.switch coq.coq-version [
11- { case = range "8.11" "8.17"; out = "0.1.1"; }
12 ] null;
1314 releaseRev = v: "v${v}";
···89 inherit version;
10 defaultVersion = with lib.versions; lib.switch coq.coq-version [
11+ { case = range "8.11" "8.18"; out = "0.1.1"; }
12 ] null;
1314 releaseRev = v: "v${v}";
···20 withDoc = single && (args.withDoc or false);
21 defaultVersion = with versions; lib.switch coq.coq-version [
22 { case = isGe "8.15"; out = "1.17.0"; }
23- { case = range "8.16" "8.17"; out = "2.0.0"; }
24- { case = range "8.13" "8.17"; out = "1.16.0"; }
25 { case = range "8.14" "8.16"; out = "1.15.0"; }
26 { case = range "8.11" "8.15"; out = "1.14.0"; }
27 { case = range "8.11" "8.15"; out = "1.13.0"; }
···20 withDoc = single && (args.withDoc or false);
21 defaultVersion = with versions; lib.switch coq.coq-version [
22 { case = isGe "8.15"; out = "1.17.0"; }
23+ { case = range "8.16" "8.18"; out = "2.0.0"; }
24+ { case = range "8.13" "8.18"; out = "1.16.0"; }
25 { case = range "8.14" "8.16"; out = "1.15.0"; }
26 { case = range "8.11" "8.15"; out = "1.14.0"; }
27 { case = range "8.11" "8.15"; out = "1.13.0"; }
+1-1
pkgs/development/coq-modules/metalib/default.nix
···5 owner = "plclub";
6 inherit version;
7 defaultVersion = with lib.versions; lib.switch coq.coq-version [
8- { case = range "8.14" "8.17"; out = "8.15"; }
9 { case = range "8.10" "8.13"; out = "8.10"; }
10 ] null;
11 releaseRev = v: "coq${v}";
···5 owner = "plclub";
6 inherit version;
7 defaultVersion = with lib.versions; lib.switch coq.coq-version [
8+ { case = range "8.14" "8.18"; out = "8.15"; }
9 { case = range "8.10" "8.13"; out = "8.10"; }
10 ] null;
11 releaseRev = v: "coq${v}";
···5 owner = "snu-sf";
6 inherit version;
7 defaultVersion = with lib.versions; lib.switch coq.coq-version [
8- { case = range "8.13" "8.17"; out = "4.2.0"; }
9 { case = range "8.12" "8.17"; out = "4.1.2"; }
10 { case = range "8.9" "8.13"; out = "4.1.1"; }
11 { case = range "8.6" "8.13"; out = "4.0.2"; }
···5 owner = "snu-sf";
6 inherit version;
7 defaultVersion = with lib.versions; lib.switch coq.coq-version [
8+ { case = range "8.13" "8.18"; out = "4.2.0"; }
9 { case = range "8.12" "8.17"; out = "4.1.2"; }
10 { case = range "8.9" "8.13"; out = "4.1.1"; }
11 { case = range "8.6" "8.13"; out = "4.0.2"; }
+2-1
pkgs/development/coq-modules/paramcoq/default.nix
···4 pname = "paramcoq";
5 inherit version;
6 defaultVersion = with lib.versions; lib.switch coq.version [
7- { case = range "8.10" "8.17"; out = "1.1.3+coq${coq.coq-version}"; }
8 { case = range "8.7" "8.13"; out = "1.1.2+coq${coq.coq-version}"; }
9 ] null;
10 displayVersion = { paramcoq = "..."; };
011 release."1.1.3+coq8.17".sha256 = "sha256-m8QGGuwj1lHzDprf4LHgAuzwfoblxtDIHunHBdpmiuM=";
12 release."1.1.3+coq8.16".sha256 = "sha256-K7/8hXH6DwiW7Gw41sgQF8UDAO3c32xBGWQQapzG8Mo=";
13 release."1.1.3+coq8.15".sha256 = "0sl7ihznwz05d2x2v78w1zd4q55c1sgy06vxasbcls4v2pkw53hl";
···4 pname = "paramcoq";
5 inherit version;
6 defaultVersion = with lib.versions; lib.switch coq.version [
7+ { case = range "8.10" "8.18"; out = "1.1.3+coq${coq.coq-version}"; }
8 { case = range "8.7" "8.13"; out = "1.1.2+coq${coq.coq-version}"; }
9 ] null;
10 displayVersion = { paramcoq = "..."; };
11+ release."1.1.3+coq8.18".sha256 = "sha256-hNBaj9hB+OzwXsOX+TOXtDLjA5oP4EmEgseLwxFxW+I=";
12 release."1.1.3+coq8.17".sha256 = "sha256-m8QGGuwj1lHzDprf4LHgAuzwfoblxtDIHunHBdpmiuM=";
13 release."1.1.3+coq8.16".sha256 = "sha256-K7/8hXH6DwiW7Gw41sgQF8UDAO3c32xBGWQQapzG8Mo=";
14 release."1.1.3+coq8.15".sha256 = "0sl7ihznwz05d2x2v78w1zd4q55c1sgy06vxasbcls4v2pkw53hl";
+1-1
pkgs/development/coq-modules/parsec/default.nix
···1112 inherit version;
13 defaultVersion = with lib.versions; lib.switch coq.version [
14- { case = range "8.14" "8.17"; out = "0.1.2"; }
15 { case = range "8.12" "8.16"; out = "0.1.1"; }
16 { case = range "8.12" "8.13"; out = "0.1.0"; }
17 ] null;
···1112 inherit version;
13 defaultVersion = with lib.versions; lib.switch coq.version [
14+ { case = range "8.14" "8.18"; out = "0.1.2"; }
15 { case = range "8.12" "8.16"; out = "0.1.1"; }
16 { case = range "8.12" "8.13"; out = "0.1.0"; }
17 ] null;
+1-1
pkgs/development/coq-modules/reglang/default.nix
···1011 inherit version;
12 defaultVersion = with lib.versions; lib.switch coq.coq-version [
13- { case = range "8.10" "8.17"; out = "1.1.3"; }
14 ] null;
1516
···1011 inherit version;
12 defaultVersion = with lib.versions; lib.switch coq.coq-version [
13+ { case = range "8.10" "8.18"; out = "1.1.3"; }
14 ] null;
1516
···1516 inherit version;
17 defaultVersion = with lib.versions; lib.switch coq.coq-version [
18- { case = range "8.10" "8.17"; out = "8.14.0"; }
19 { case = "8.9"; out = "8.9.0"; }
20 { case = "8.8"; out = "8.8.0"; }
21 { case = "8.7"; out = "8.7.0"; }
···1516 inherit version;
17 defaultVersion = with lib.versions; lib.switch coq.coq-version [
18+ { case = range "8.10" "8.18"; out = "8.14.0"; }
19 { case = "8.9"; out = "8.9.0"; }
20 { case = "8.8"; out = "8.8.0"; }
21 { case = "8.7"; out = "8.7.0"; }