about summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-and-tools
AgeCommit message (Collapse)AuthorFilesLines
2021-01-29glab: 1.13.1 -> 1.14.0R. RyanTM1-3/+3
2021-01-28gitAndTools.git-machete: 2.15.9 -> 2.16.1Travis CI1-2/+2
###### Motivation for this change Update to latest upstream version ###### Things done * [ ] Tested using sandboxing ([nix.useSandbox](http://nixos.org/nixos/manual/options.html#opt-nix.useSandbox) on NixOS, or option `sandbox` in [`nix.conf`](http://nixos.org/nix/manual/#sec-conf-file) on non-NixOS linux) * Built on platform(s) * [x] NixOS * [ ] macOS * [ ] other Linux distributions * [ ] Tested via one or more NixOS test(s) if existing and applicable for the change (look inside [nixos/tests](https://github.com/NixOS/nixpkgs/blob/master/nixos/tests)) * [ ] Tested compilation of all pkgs that depend on this change using `nix-shell -p nix-review --run "nix-review wip"` * [x] Tested execution of all binary files (usually in `./result/bin/`) * [ ] Determined the impact on package closure size (by running `nix path-info -S` before and after) * [ ] Ensured that relevant documentation is up to date * [x] Fits [CONTRIBUTING.md](https://github.com/NixOS/nixpkgs/blob/master/.github/CONTRIBUTING.md). ###### Notify maintainers cc @blitz @Ma27 @tfc @worldofpeace
2021-01-26Revert "gh: enable tests"zowoq1-10/+3
This reverts commit c7deb49058baaeeba60065e62487476a7f35724c. Fails with sandboxing.
2021-01-25treewide: remove stdenv where not neededPavol Rusnak21-21/+21
2021-01-24gitAndTools.lab: 0.18.0 -> 0.19.0Mario Rodas1-2/+2
https://github.com/zaquestion/lab/releases/tag/v0.19.0
2021-01-23gh: enable testsDrew Risinger1-3/+10
2021-01-22treewide: add final newlinezowoq2-2/+2
2021-01-22gh: 1.4.0 -> 1.5.0zowoq1-3/+3
https://github.com/cli/cli/releases/tag/v1.5.0
2021-01-21ghorg: 1.4.0 -> 1.5.0 (#109824)R. RyanTM1-2/+2
2021-01-19treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nixJonathan Ringer9-18/+18
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
2021-01-18Merge pull request #109835 from r-ryantm/auto-update/glabSandro1-3/+3
glab: 1.11.1 -> 1.13.1
2021-01-18Merge pull request #109834 from r-ryantm/auto-update/gitflowSandro1-2/+2
gitflow: 1.12.2 -> 1.12.3
2021-01-18Merge pull request #109833 from r-ryantm/auto-update/git-workspaceSandro1-3/+3
git-workspace: 0.7.0 -> 0.8.0
2021-01-18glab: 1.11.1 -> 1.13.1R. RyanTM1-3/+3
2021-01-18gitflow: 1.12.2 -> 1.12.3R. RyanTM1-2/+2
2021-01-18git-workspace: 0.7.0 -> 0.8.0R. RyanTM1-3/+3
2021-01-18git-ignore: 1.0.0 -> 1.1.1R. RyanTM1-3/+3
2021-01-17git-big-picture: 0.10.1 -> 1.0.0 (fixes CVE-2021-3028)Sebastian Pipping1-8/+12
Also propagates move of repository from https://github.com/esc/git-big-picture to https://github.com/git-big-picture/git-big-picture . Upstream change log at https://github.com/git-big-picture/git-big-picture#changelog
2021-01-16Merge pull request #108513 from languitar/patch-1Anderson Torres1-4/+4
pass-git-helper: 1.1.0 -> 1.1.1
2021-01-16treewide: stdenv.lib -> libBen Siraphob34-104/+104
2021-01-15pass-git-helper: 1.1.0 -> 1.1.1Johannes Wienke1-4/+4
Bump package and add new test requirements.
2021-01-14gitAndTools: move everything to the top levelAlyssa Ross3-272/+2
The comment at the top of git-and-tools/default.nix said: /* All git-relates tools live here, in a separate attribute set so that users * can get a fast overview over what's available. but unfortunately that hasn't actually held up in practice. Git-related packages have continued to be added to the top level, or into gitAndTools, or sometimes both, basically at random, so having gitAndTools is just confusing. In fact, until I looked as part of working on getting rid of gitAndTools, one program (ydiff) was packaged twice independently, once in gitAndTools and once at the top level (I fixed this in 98c34901969). So I think it's for the best if we move away from gitAndTools, and just put all the packages it previously contained at the top level. I've implemented this here by just making gitAndTools an alias for the top level -- this saves having loads of lines in aliases.nix. This means that people can keep referring to gitAndTools in their configuration, but it won't be allowed to be used within Nixpkgs, and it won't be presented to new users by e.g. nix search. The only other change here that I'm aware of is that appendToName "minimal" is not longer called on the default git package, because doing that would have necessitated having a private gitBase variable like before. I think it makes more sense not to do that anyway, and reserve the "minimal" suffix only for gitMinimal.
2021-01-12gitAndTools.gita: 0.10.10 -> 0.11.9yoctocell1-3/+3
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch51-101/+101
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
2021-01-07Merge branch 'master' into staging-nextJan Tojnar5-15/+57
https://github.com/NixOS/nixpkgs/commit/b04fc593e7b55fe1f74421b11589f12a339c92e2 seems to have accidentally changed mkDerivation function for dfilemanager and solarus-quest-editor so I have reverted that here.
2021-01-07Merge pull request #108656 from xwvvvvwx/radicle-upstream-0.1.6Sandro1-2/+2
radicle-upstream: 0.1.5 -> 0.1.6
2021-01-07radicle-upstream: 0.1.5 -> 0.1.6David Terry1-2/+2
2021-01-06Merge pull request #107012 from DamienCassou/DamienCassou/git-when-mergedMario Rodas2-0/+42
gitAndTools.git-when-merged: init at 1.2.0
2021-01-05gitAndTools.lab: 0.17.2 -> 0.18.0Mario Rodas1-10/+10
https://github.com/zaquestion/lab/releases/tag/v0.18.0
2021-01-06gitAndTools.delta: 0.5.0 -> 0.5.1zowoq1-3/+3
https://github.com/dandavison/delta/releases/tag/0.5.1
2021-01-03Merge staging-next into stagingzowoq2-2/+6
2021-01-02hub: Add testTim Steinbach1-1/+3
2021-01-02hub: Replace git referencesTim Steinbach1-1/+3
Hub fetches git from the environment by default. This can lead to hub installations without git available, which makes little sense. The change replaces the references with fully-qualified calls to git
2021-01-01treewide: remove maintainership of `ma27` from a few packagesMaximilian Bosch1-1/+1
Those are packages I don't use anymore for a longer time and I therefore don't think that listing me as maintainer is a good idea. If those should be removed now, I'd be fine with that. SuperSandro2000 will take care of a few packages[1]. [1] https://github.com/NixOS/nixpkgs/pull/108126#pullrequestreview-560599381
2020-12-31Merge staging-next into stagingFrederik Rietdijk1-3/+3
2020-12-31gitAndTools.delta: 0.4.5 -> 0.5.0zowoq1-3/+3
https://github.com/dandavison/delta/releases/tag/0.5.0
2020-12-29git: 2.29.2 -> 2.30.0 (#107828)Michael Weiss1-8/+3
The removed patch was merged into Git 2.30: https://github.com/git/git/commit/3569e11d6999cf18549626356784c9fd74f3d43e And the disabled test is new in Git 2.30.
2020-12-29Merge pull request #107835 from mweinelt/gitstatusMartin Weinelt1-3/+3
gitstatus: 1.4.3 -> 1.4.4
2020-12-29gitAndTools.gitstatus: clarify license is gpl3OnlyMartin Weinelt1-1/+1
2020-12-29gitAndTools.gitstatus: 1.4.3 -> 1.4.4Martin Weinelt1-2/+2
2020-12-28gitAndTools.ghr: init at 0.13.0IvarWithoutBones2-0/+32
2020-12-23Merge pull request #107401 from yanganto/gitui-11Maximilian Bosch2-7/+8
gitAndTools.gitui: 0.10.1 -> 0.11.0
2020-12-23gitAndTools.delta: 0.4.4 -> 0.4.5zowoq1-3/+3
https://github.com/dandavison/delta/releases/tag/0.4.5
2020-12-22gitui: 0.10.1 -> 0.11.0Antonio Yang2-7/+8
2020-12-19gitAndTools.git-machete: 2.15.7 -> 2.15.9Travis CI1-2/+2
###### Motivation for this change Update to latest upstream version ###### Things done * [ ] Tested using sandboxing ([nix.useSandbox](http://nixos.org/nixos/manual/options.html#opt-nix.useSandbox) on NixOS, or option `sandbox` in [`nix.conf`](http://nixos.org/nix/manual/#sec-conf-file) on non-NixOS linux) * Built on platform(s) * [x] NixOS * [ ] macOS * [ ] other Linux distributions * [ ] Tested via one or more NixOS test(s) if existing and applicable for the change (look inside [nixos/tests](https://github.com/NixOS/nixpkgs/blob/master/nixos/tests)) * [ ] Tested compilation of all pkgs that depend on this change using `nix-shell -p nix-review --run "nix-review wip"` * [x] Tested execution of all binary files (usually in `./result/bin/`) * [ ] Determined the impact on package closure size (by running `nix path-info -S` before and after) * [ ] Ensured that relevant documentation is up to date * [x] Fits [CONTRIBUTING.md](https://github.com/NixOS/nixpkgs/blob/master/.github/CONTRIBUTING.md). ###### Notify maintainers cc @blitz @Ma27 @tfc @worldofpeace
2020-12-16gitAndTools.git-when-merged: init at 1.2.0Damien Cassou2-0/+42
2020-12-16gitAndTools.gh: 1.3.1 -> 1.4.0zowoq1-3/+3
https://github.com/cli/cli/releases/tag/v1.4.0
2020-12-15radicle-upstream: init at 0.1.5David Terry1-0/+64
2020-12-04Merge master into staging-nextgithub-actions[bot]1-3/+3
2020-12-04gitAndTools.gh: 1.3.0 -> 1.3.1zowoq1-3/+3
https://github.com/cli/cli/releases/tag/v1.3.1