| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | python312Packages.cmd2: 2.5.9 -> 2.5.11 | R. Ryantm | 2025-02-15 | 1 | -2/+2 |
| * | python312Packages.cmd2: add missed dependency on Darwin | K900 | 2025-02-05 | 1 | -1/+2 |
| * | python3Packages.cmd2: 2.4.3 -> 2.5.9•••https://github.com/python-cmd2/cmd2/releases/tag/2.5.9 | Martin Weinelt | 2025-01-27 | 1 | -32/+23 |
| * | treewide: replace `stdenv.is` with `stdenv.hostPlatform.is`•••In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ``` | Artturin | 2024-09-25 | 1 | -2/+2 |
| * | python3Packages: format with nixfmt | Martin Weinelt | 2024-05-22 | 1 | -40/+41 |
| * | python310Packages.cmd2: add changelog to meta | Fabian Affolter | 2023-03-03 | 1 | -3/+7 |
| * | python3Packages.cmd2: 2.4.2 -> 2.4.3 | Martin Weinelt | 2023-03-03 | 1 | -2/+2 |
| * | treewide: switch to nativeCheckInputs•••checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs. | Guillaume Girol | 2023-01-21 | 1 | -1/+1 |
| * | python3Packages.cmd2: 2.4.0 -> 2.4.2 | Martin Weinelt | 2022-07-21 | 1 | -2/+2 |
| * | python3Packages.cmd2: don't require vim for tests•••It causes a huge rebuild chain when updating vim, that affects, among others qemu and ceph. | Martin Weinelt | 2022-07-09 | 1 | -2/+6 |
| * | python3Packages.cmd2: 2.3.3 -> 2.4.0 | Martin Weinelt | 2022-03-14 | 1 | -2/+2 |
| * | python3Packages.cmd2: 2.3.2 -> 2.3.3 | Jonathan Ringer | 2021-12-14 | 1 | -2/+2 |
| * | python3Packages.cmd2: 2.2.0 -> 2.3.2 | Jonathan Ringer | 2021-11-30 | 1 | -2/+2 |
| * | python3Packages.cmd2: 2.1.2 -> 2.2.0 | Martin Weinelt | 2021-10-11 | 1 | -2/+2 |
| * | python3Packages.cmd2: add license | Fabian Affolter | 2021-09-22 | 1 | -0/+1 |
| * | python3Packages.cmd2: fix build | Fabian Affolter | 2021-09-05 | 1 | -31/+44 |
| * | python3Packages.cmd2: 1.5.0 -> 2.1.2 | Martin Weinelt | 2021-09-05 | 1 | -2/+2 |
| * | treewide: ensure pre/post phase hooks are strings•••Some derivations use lib.optional or lib.optionals when setting pre/post phase hooks. Ensure the proper lib.optionalString is used. | Sebastián Mancilla | 2021-08-20 | 1 | -1/+1 |
| * | treewide: setuptools_scm -> setuptools-scm | Sandro Jäckel | 2021-06-03 | 1 | -2/+2 |
| * | python37Packages.cmd2: 1.4.0 -> 1.5.0 | R. RyanTM | 2021-02-02 | 1 | -2/+2 |
| * | pkgs/development/python-modules: stdenv.lib -> lib | Pavol Rusnak | 2021-01-24 | 1 | -3/+3 |
| * | treewide: with stdenv.lib; in meta -> with lib;•••Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix | Profpatsch | 2021-01-11 | 1 | -2/+2 |
| * | python37Packages.cmd2: 1.3.11 -> 1.4.0 | R. RyanTM | 2020-11-15 | 1 | -2/+2 |
| * | python37Packages.cmd2: 1.3.10 -> 1.3.11 | R. RyanTM | 2020-10-15 | 1 | -2/+2 |
| * | python37Packages.cmd2: 1.3.8 -> 1.3.10 | R. RyanTM | 2020-09-28 | 1 | -2/+2 |
| * | python3Packages.cmd2: 1.3.3 -> 1.3.8 | Frederik Rietdijk | 2020-08-29 | 1 | -2/+2 |
| * | python: cmd2: 1.0.2 -> 1.3.3 | Frederik Rietdijk | 2020-08-16 | 1 | -2/+2 |
| * | python37Packages.cmd2: 1.0.1 -> 1.0.2 | R. RyanTM | 2020-05-06 | 1 | -2/+2 |
| * | python37Packages.cmd2: 1.0.0 -> 1.0.1 | R. RyanTM | 2020-04-06 | 1 | -3/+3 |
| * | python3Packages.cmd2: 0.9.25 -> 1.0.0•••https://github.com/python-cmd2/cmd2/releases/tag/1.0.0 | Matthieu Coudron | 2020-03-04 | 1 | -2/+2 |
| * | python3.pkgs.cmd2: fix shebang•••The bang was missing! What was there before would still have worked, but I think it would end up being executed by /bin/sh since it had no shebang line. | Alyssa Ross | 2020-02-14 | 1 | -2/+2 |
| * | python37Packages.cmd2: 0.9.23 -> 0.9.25 | R. RyanTM | 2020-02-09 | 1 | -2/+2 |
| * | python37Packages.cmd2: 0.9.22 -> 0.9.23 | R. RyanTM | 2020-01-22 | 1 | -2/+2 |
| * | python: cmd2: 0.9.21 -> 0.9.22 | Frederik Rietdijk | 2019-12-15 | 1 | -2/+2 |
| * | python38Packages.cmd2: 0.9.20 -> 0.9.21 | R. RyanTM | 2019-12-08 | 1 | -2/+2 |
| * | python3Packages.cmd2: 0.19.0 -> 0.20.0 | Matthieu Coudron | 2019-11-19 | 1 | -2/+2 |
| * | python: cmd2: 0.9.17 -> 0.9.19 | Frederik Rietdijk | 2019-10-18 | 1 | -2/+2 |
| * | pythonPackages.cmd2: 0.9.16 -> 0.9.17•••Changelog https://github.com/python-cmd2/cmd2/blob/master/CHANGELOG.md | Matthieu Coudron | 2019-09-26 | 1 | -2/+2 |
| * | python37Packages.cmd2: 0.9.15 -> 0.9.16•••Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-cmd2/versions | R. RyanTM | 2019-08-20 | 1 | -2/+2 |
| * | python3Packages.cmd2: 0.9.14 -> 0.9.15•••API changes quite a bit: https://github.com/python-cmd2/cmd2/blob/0.9.15/CHANGELOG.md | Matthieu Coudron | 2019-08-02 | 1 | -2/+2 |
| * | python37Packages.cmd2: 0.9.13 -> 0.9.14•••Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-cmd2/versions | R. RyanTM | 2019-07-02 | 1 | -2/+2 |
| * | python: cmd2: 0.9.12 -> 0.9.13 | Frederik Rietdijk | 2019-06-15 | 1 | -2/+2 |
| * | pythonPackages.cmd2_8: remove | Robert Scott | 2019-06-12 | 1 | -50/+0 |
| * | python3Packages.cmd2: 0.9.11 -> 0.9.12•••Changelog: https://github.com/python-cmd2/cmd2/blob/master/CHANGELOG.md | Matthieu Coudron | 2019-04-23 | 1 | -2/+2 |
| * | python37Packages.cmd2: 0.9.10 -> 0.9.11•••Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-cmd2/versions | R. RyanTM | 2019-04-02 | 1 | -2/+2 |
| * | Merge staging-next into master | Frederik Rietdijk | 2019-03-01 | 1 | -2/+2 |
| |\ | |||||
| | * | python: cmd2: 0.9.8 -> 0.9.10 | Frederik Rietdijk | 2019-02-23 | 1 | -2/+2 |
| | * | python: cmd2: 0.9.7 -> 0.9.8 | Frederik Rietdijk | 2019-02-17 | 1 | -2/+2 |
| * | | treewide: use runtimeShell instead of stdenv.shell whenever possible•••Whenever we create scripts that are installed to $out, we must use runtimeShell in order to get the shell that can be executed on the machine we create the package for. This is relevant for cross-compiling. The only use case for stdenv.shell are scripts that are executed as part of the build system. Usages in checkPhase are borderline however to decrease the likelyhood of people copying the wrong examples, I decided to use runtimeShell as well. | Jörg Thalheim | 2019-02-26 | 1 | -2/+3 |
| |/ | |||||
| * | Merge pull request #54094 from rnhmjoj/shell•••treewide: use ${stdenv.shell} instead of /bin/sh where possible | Frederik Rietdijk | 2019-01-19 | 2 | -4/+4 |
| |\ | |||||
