186877 Commits

Author SHA1 Message Date
Lily Ballard
107583bdfa cocoapods: 1.7.4 -> 1.7.5 2019-07-19 11:44:38 -07:00
Tad Fisher
c8442c7f6a plata-theme: 0.8.3 -> 0.8.7 2019-07-19 11:30:16 -07:00
R. RyanTM
73361ce403 leocad: 18.02 -> 19.07.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/leocad/versions
2019-07-19 11:13:16 -07:00
Ryan Mulligan
6c0ed987ee
Merge pull request #65063 from r-ryantm/auto-update/feedreader
feedreader: 2.9.2 -> 2.10.0
2019-07-19 10:40:33 -07:00
R. RyanTM
730ac18ebe ktlint: 0.33.0 -> 0.34.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/ktlint/versions
2019-07-19 10:37:38 -07:00
Edmund Wu
23ae47a2d0
compton: 6.2 -> 7 2019-07-19 13:07:21 -04:00
Tyson Whitehead
28a0dc5a12
gl2ps: init at 1.4.0 2019-07-19 11:07:10 -04:00
Frederik Rietdijk
0ce55a10d2 Merge master into staging-next 2019-07-19 16:33:38 +02:00
Bas van Dijk
58ea28eb2c lib: allow sourceByRegex to be composed after cleanSourceWith
`sourceByRegex src regexes` should include a source file if one of the
regular expressions `regexes` matches the path of that file relative
to `src`.

However to compute this relative path `sourceByRegex` uses:

```
relPath = lib.removePrefix (toString src + "/") (toString path);
```

Note that `toString path` evaluates to an absolute file somewhere
under `src` and not under `/nix/store`.

The problem is that this doesn't work if `src` is a `cleanSourceWith`
invocation as well because `toString src` will then evaluate to
`src.outPath` which will evaluate to `builtins.filterSource ...` which
evaluates to a path in `/nix/store` which is not a prefix of `path`.

The solution is to replace `src` with `origSrc` where

```
origSrc = if isFiltered then src.origSrc else src;
isFiltered = src ? _isLibCleanSourceWith;
```

Test this by executing the following from the nixpkgs repo:

```
(cat << 'EOI'
let
  pkgs = import ./. {};
in pkgs.runCommand "test-sourceByRegex" {
  test_sourceByRegex =
    let
      src1 = pkgs.lib.sourceByRegex ./.  [ "^test-sourceByRegex.nix$" ];
      src2 = pkgs.lib.sourceByRegex src1 [ "^test-sourceByRegex.nix$" ];
    in src2 + "/test-sourceByRegex.nix";
} ''
 cp $test_sourceByRegex $out
''
EOI
) > test-sourceByRegex.nix
nix-build test-sourceByRegex.nix
```
2019-07-19 16:23:11 +02:00
Marek Mahut
e72f25673d Renaming security.virtualization.flushL1DataCache to virtualisation
Fixes #65044
2019-07-19 15:49:37 +02:00
Vladyslav M
98a0dcefbf
broot: 0.8.0 -> 0.9.0 2019-07-19 16:10:00 +03:00
R. RyanTM
663542ad04 gnome3.gnome-getting-started-docs: 3.32.1 -> 3.32.2 (#65073)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/gnome-getting-started-docs/versions
2019-07-19 14:45:17 +02:00
Mario Rodas
3f880f187d
Merge pull request #65045 from marsam/update-flow
flow: 0.102.0 -> 0.103.0
2019-07-19 07:13:00 -05:00
Ryan Mulligan
1209ee987e
Merge pull request #65056 from r-ryantm/auto-update/armadillo
armadillo: 9.500.2 -> 9.600.4
2019-07-19 05:11:39 -07:00
R. RyanTM
c638d5b023 drumkv1: 0.9.8 -> 0.9.9
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/drumkv1/versions
2019-07-19 04:26:04 -07:00
Tmplt
588513f1c6 msmtp: 1.8.4 -> 1.8.5 2019-07-19 13:20:29 +02:00
Lev Livnev
631b2348f3
maintainers: add livnev 2019-07-19 11:46:24 +01:00
R. RyanTM
893c3e8d1e flmsg: 4.0.8.04 -> 4.0.10
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/flmsg/versions
2019-07-19 03:06:04 -07:00
Vladyslav M
b686a0b55b
imv: 3.0.0 -> 3.1.2 (#65057)
imv: 3.0.0 -> 3.1.2
2019-07-19 12:38:13 +03:00
Vladyslav M
2fe2b2978e
janet: 1.0.0 -> 1.1.0 (#65050)
janet: 1.0.0 -> 1.1.0
2019-07-19 12:32:06 +03:00
Frederik Rietdijk
594ca3f1cf ccache.links: make it a function of unwrappedCC
That way we can use a ccacheStdenv with e.g. a different CC:

stdenv = overrideCC gcc8Stdenv (ccacheWrapper.override { unwrappedCC
= gcc8Stdenv.cc.cc; });
2019-07-19 11:27:56 +02:00
R. RyanTM
1649f53b79 feedreader: 2.9.2 -> 2.10.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/feedreader/versions
2019-07-19 02:18:19 -07:00
R. RyanTM
aa5775242a flink: 1.6.2 -> 1.8.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/flink/versions
2019-07-19 01:41:51 -07:00
Meghea Iulian
6510c45b56 distrobuilder: 2018_10_04 -> 2019_10_07 2019-07-19 11:06:13 +03:00
R. RyanTM
1b7e04e37a csound: 6.12.2 -> 6.13.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/csound/versions
2019-07-19 00:47:20 -07:00
Chris Ostrouchov
2d5769884d pythonPackages.ibis-framework: init at 1.20 2019-07-19 09:43:35 +02:00
Chris Ostrouchov
784e957c74 python3Packages.ibis: init at 1.6.0 2019-07-19 09:43:35 +02:00
Marek Mahut
fbee9d3edf cypress: fix missing GSettings schemas 2019-07-19 09:26:13 +02:00
Uma Zalakain
882b201f58 Change maintainter's name 2019-07-19 09:21:18 +02:00
Mario Rodas
80d39388de pythonPackages.scrapy: 1.6.0 -> 1.7.1 2019-07-19 09:09:33 +02:00
Markus Hauck
6b3fe044fc imv: 3.0.0 -> 3.1.2 2019-07-19 08:52:00 +02:00
Joachim F
75a3bf5e5d
Merge pull request #65021 from joachifm/graphene-hardened-malloc
graphene-hardened-malloc: 190405.003.2019.04.01.19 -> 1
2019-07-19 06:51:56 +00:00
Michael Raskin
fe26928084
Merge pull request #65052 from r-ryantm/auto-update/bftpd
bftpd: 5.1 -> 5.2
2019-07-19 06:49:34 +00:00
Joachim Fasting
948d2e317b
graphene-hardened-malloc: 190405.003.2019.04.01.19 -> 1
The initial stable standalone release.

The integer numbered tags are the standalone releases, while the
PQ3B.190705.003.2019.07.01.21 style tags are part of GrapheneOS releases.

For us it probably makes the most sense to track the standalone releases.
2019-07-19 08:16:09 +02:00
R. RyanTM
144817f552 armadillo: 9.500.2 -> 9.600.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/armadillo/versions
2019-07-18 23:03:49 -07:00
R. RyanTM
cbeddc0446 calf: 0.90.2 -> 0.90.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/calf/versions
2019-07-18 22:46:28 -07:00
Michael Francis
37d001311d updated to 2.14.2 2019-07-19 13:19:06 +08:00
R. RyanTM
45332a59a9 bftpd: 5.1 -> 5.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/bftpd/versions
2019-07-18 22:05:23 -07:00
Andrew Chambers
37e1c1aeda janet: 1.0.0 -> 1.1.0 2019-07-19 15:12:03 +12:00
Andrew Chambers
386b7d814d redo-apenwarr: init at unstable-2019-06-21 2019-07-19 15:00:27 +12:00
worldofpeace
66caaf0635 gnome3.nautilus-python: 1.2.2 -> 1.2.3
https://gitlab.gnome.org/GNOME/nautilus-python/blob/NAUTILUS_PYTHON_1_2_3/NEWS
2019-07-18 22:49:07 -04:00
worldofpeace
8fcf391db7 gnome3.gvfs: 1.40.1 -> 1.40.2
Has all the patches for the CVE's plus an additional further fix.

https://gitlab.gnome.org/GNOME/gvfs/blob/1.40.2/NEWS
2019-07-18 22:47:10 -04:00
Benjamin Staffin
59b08e6759 discord: Fix desktop icon
The name used in the .desktop file needs to match the filename that
exists in $out/share/pixmaps/ for it to work.
2019-07-19 04:00:52 +02:00
worldofpeace
5aec0b77f1
Merge pull request #65046 from worldofpeace/fix-doc-build
nixos/doc: fix build
2019-07-18 20:55:02 -04:00
worldofpeace
00eef848b2 nixos/doc: fix build
Adjusts to options renamed in 90b1197301eb714e64a508c3be2dd073b24caed3
2019-07-18 20:40:24 -04:00
worldofpeace
3531a229d1 nixos/pantheon: add gtk xdg desktop portal 2019-07-18 20:03:12 -04:00
worldofpeace
69f2836c1b
Merge pull request #64575 from pasqui23/portal
nixos/xdg: add portal option
2019-07-18 20:00:09 -04:00
MetaDark
5d053d8333 protontricks: init at 1.2.3
fixes #61193
2019-07-18 19:59:19 -04:00
Pasquale
90b1197301 nixos/xdg: add portal option
This factors the configuration out of the flatpak module.
2019-07-18 19:59:07 -04:00
worldofpeace
3e25412e3b
Merge pull request #65008 from dtzWill/feature/victor-mono-font
victor-mono: improvements from previous PR
2019-07-18 18:47:14 -04:00