about summary refs log tree commit diff
path: root/pkgs/applications/editors
Commit message (Collapse)AuthorAge
* Merge pull request #79858 from r-ryantm/auto-update/quilterworldofpeace2020-02-12
|\ | | | | quilter: 2.1.0 -> 2.1.1
| * quilter: 2.1.0 -> 2.1.1R. RyanTM2020-02-11
| |
* | Merge pull request #79801 from NixOS/staging-nextFrederik Rietdijk2020-02-12
|\ \ | | | | | | Staging next
| * \ Merge master into staging-nextFrederik Rietdijk2020-02-12
| |\ \
| * \ \ Merge staging into staging-nextFrederik Rietdijk2020-02-11
| |\ \ \ | | |_|/ | |/| |
| | * | fetchcargo: use flat tar.gz file for vendored src instead of recursive hash dirBenjamin Hipple2020-02-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This has several advantages: 1. It takes up less space on disk in-between builds in the nix store. 2. It uses less space in the binary cache for vendor derivation packages. 3. It uses less network traffic downloading from the binary cache. 4. It plays nicely with hashed mirrors like tarballs.nixos.org, which only substitute --flat hashes on single files (not recursive directory hashes). 5. It's consistent with how simple `fetchurl` src derivations work. 6. It provides a stronger abstraction between input src-package and output package, e.g., it's harder to accidentally depend on the src derivation at runtime by referencing something like `${src}/etc/index.html`. Likewise, in the store it's harder to get confused with something that is just there as a build-time dependency vs. a runtime dependency, since the build-time src dependencies are tarred up. Disadvantages are: 1. It takes slightly longer to untar at the start of a build. As currently implemented, this attaches the compacted vendor.tar.gz feature as a rider on `verifyCargoDeps`, since both of them are relatively newly implemented behavior that change the `cargoSha256`. If this PR is accepted, I will push forward the remaining rust packages with a series of treewide PRs to update the `cargoSha256`s.
* | | | Merge pull request #77975 from sjmackenzie/ampadisbladis2020-02-12
|\ \ \ \ | |_|_|/ |/| | | amp: git rev 2c88e8 (2019-06-09) -> 0.6.1
| * | | amp: git rev 2c88e8 (2019-06-09) -> v0.6.1Stewart Mackenzie2020-01-18
| | | |
* | | | androidStudioPackages.beta: 3.6.0.19 -> 3.6.0.20Michael Weiss2020-02-11
| |/ / |/| |
* | | vscodium: 1.41.1 -> 1.42.0Patrick Hilhorst2020-02-10
| | |
* | | manuskript: 0.10.0 -> 0.11.0R. RyanTM2020-02-10
| |/ |/|
* | kdeApplications.okteta: 0.26.2 -> 0.26.3R. RyanTM2020-02-09
| |
* | rstudio: use qt5's mkDerivation (#74381)Thomas Churchman2020-02-09
| |
* | Merge pull request #75670 from mkg20001/pkg/blessworldofpeace2020-02-08
|\ \ | | | | | | bless: init at 0.6.2
| * | bless: init at 0.6.2Maciej Krüger2020-02-01
| | |
* | | vscode 1.41.1 -> 1.42.0zowoq2020-02-08
| | |
* | | rednotebook: 2.15 -> 2.16R. RyanTM2020-02-06
| | |
* | | thonny: 3.2.4 -> 3.2.6R. RyanTM2020-02-06
| | |
* | | quilter: 2.0.5 -> 2.1.0R. RyanTM2020-02-06
| | |
* | | kdev-python: 5.4.6 -> 5.5.0Aaron Andersen2020-02-03
| | |
* | | kdev-php: 5.4.6 -> 5.5.0Aaron Andersen2020-02-03
| | |
* | | kdevelop: 5.4.6 -> 5.5.0Aaron Andersen2020-02-03
| | |
* | | Merge pull request #78801 from asbachb/update-to-netbeans-11.2Maximilian Bosch2020-02-01
|\ \ \ | | | | | | | | netbeans: 11.1 -> 11.2
| * | | netbeans: 11.1 -> 11.2Benjamin Asbach2020-01-30
| |/ /
* / / androidStudioPackages.beta: 3.6.0.18 -> 3.6.0.19Michael Weiss2020-01-30
|/ /
* | Merge pull request #78503 from bhipple/fix/hexdinoworldofpeace2020-01-28
|\ \ | | | | | | hexdino: use pname
| * | hexdino: use pnameBenjamin Hipple2020-01-25
| | |
* | | Merge pull request #78397 from sternenseemann/uberwriter-bugfixMatthew Bauer2020-01-28
|\ \ \ | | | | | | | | uberwriter: add shared-mime-info to environment and update
| * | | uberwriter: 2019-11-29 -> 2020-01-24sternenseemann2020-01-25
| | | |
| * | | uberwriter: add shared-mime-info to environmentsternenseemann2020-01-24
| | | |
* | | | Merge pull request #78265 from Synthetica9/https-homepagesSilvan Mosberger2020-01-27
|\ \ \ \ | | | | | | | | | | treewide: fix redirected urls
| * | | | treewide: fix redirected urlsPatrick Hilhorst2020-01-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | According to https://repology.org/repository/nix_unstable/problems, we have a lot of packages that have http links that redirect to https as their homepage. This commit updates all these packages to use the https links as their homepage. The following script was used to make these updates: ``` curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq '.[] | .problem' -r \ | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \ | sort | uniq > script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ```
* | | | | Merge pull request #78536 from r-ryantm/auto-update/tiledVladyslav M2020-01-26
|\ \ \ \ \ | |_|_|/ / |/| | | | tiled: 1.3.1 -> 1.3.2
| * | | | tiled: 1.3.1 -> 1.3.2R. RyanTM2020-01-26
| | | | |
* | | | | eclipses.plugins.cdt: fix source hashBjørn Forsman2020-01-24
| | | | |
* | | | | jetbrains.webstorm: 2019.3.1 -> 2019.3.2Olli Helenius2020-01-24
| | | | |
* | | | | jetbrains.pycharm-professional: 2019.3.1 -> 2019.3.2Olli Helenius2020-01-24
| | | | |
* | | | | jetbrains.pycharm-community: 2019.3.1 -> 2019.3.2Olli Helenius2020-01-24
| | | | |
* | | | | jetbrains.phpstorm: 2019.3.1 -> 2019.3.2Olli Helenius2020-01-24
| | | | |
* | | | | jetbrains.idea-ultimate: 2019.3.1 -> 2019.3.2Olli Helenius2020-01-24
| | | | |
* | | | | jetbrains.idea-community: 2019.3.1 -> 2019.3.2Olli Helenius2020-01-24
| | | | |
* | | | | jetbrains.datagrip: 2019.3.1 -> 2019.3.2Olli Helenius2020-01-24
| | | | |
* | | | | jetbrains.clion: 2019.3.2 -> 2019.3.3Olli Helenius2020-01-24
| |_|/ / |/| | |
* | | | androidStudioPackages.{dev,canary}: 4.0.0.8 -> 4.0.0.9Michael Weiss2020-01-22
| | | |
* | | | bviplus: 0.9.4 -> 1.0 (#78073)Vladyslav M2020-01-21
|\ \ \ \ | |_|/ / |/| | | bviplus: 0.9.4 -> 1.0
| * | | bviplus: 0.9.4 -> 1.0R. RyanTM2020-01-20
| |/ /
* | | focuswriter: 1.7.3 -> 1.7.4R. RyanTM2020-01-20
| | |
* | | eclipsePlugins.jdt: fix source hashRobert Helgesson2020-01-19
| | |
* | | uberwriter: init at 2019-11-29sternenseemann2020-01-18
| |/ |/|
* | quartus: init at 19.1.0.670 (#75561)Jörg Thalheim2020-01-17
|\ \ | | | | | | quartus: init at 19.1.0.670