summary refs log tree commit diff
Commit message (Collapse)AuthorAge
...
| * | | | | | | | | | | | | | | snowman: Drop qt4 variantWill Dietz2018-01-14
| | |/ / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cc #33248
* | | | | | | | | | | | | | | Merge pull request #33864 from adisbladis/mendeley-qt59adisbladis2018-01-15
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mendeley: Re-link with qt 5.9
| * | | | | | | | | | | | | | | mendeley: Re-link with qt 5.9adisbladis2018-01-15
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Merge pull request #33873 from andir/transmission-dns-rebinding-rceAndreas Rammhold2018-01-14
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | transmission: fix RCE via dns rebinding attach
| * | | | | | | | | | | | | | | | transmission: fix RCE via dns rebinding attachAndreas Rammhold2018-01-15
|/ / / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For further details see [1] & [2]. [1] https://github.com/transmission/transmission/pull/468 [2] http://www.openwall.com/lists/oss-security/2018/01/12/1
* | | | | | | | | | | | | | | | Merge pull request #33869 from dotlambda/spectre-meltdown-checkerAndreas Rammhold2018-01-14
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | spectre-meltdown-checker: 0.29 -> 0.31
| * | | | | | | | | | | | | | | | spectre-meltdown-checker: 0.29 -> 0.31Robert Schütz2018-01-14
| | |/ / / / / / / / / / / / / / | |/| | | | | | | | | | | | | |
* / | | | | | | | | | | | | | | gnuplot: Use quoting syntax that's compatible with old and new Nix versionsTuomas Tynkkynen2018-01-15
|/ / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is probably a way to have it work with substituteInPlace, but using sed is a cheap solution to not having to figure out how to escape "'$'" in Nix that works in both versions. Issue #31179. Fixes #33833.
* | | | | | | | | | | | | | | Merge #33057: stdenv meta checks: make them lazyVladimír Čunát2018-01-14
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes #22277 - it's superseded; I have some WIP on evaluation performance, but best do that in a separate PR/thread.
| * | | | | | | | | | | | | | | release notes: mention removal of lib.addPassthruVladimír Čunát2018-01-14
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | lib: deprecate `addPassthru`Jan Malakhovski2018-01-14
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | treewide: replace `addPassthru`Jan Malakhovski2018-01-14
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | lib: change the order of arguments of `addPassthru`Jan Malakhovski2018-01-14
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | stdenv: provide `meta.name`Jan Malakhovski2018-01-14
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | stdenv: hide `name` under `check-meta` assertJan Malakhovski2018-01-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a temporary workaround to make `nix-env -qa` and `nix search` ignore broken packages as they they did before this patchset. This patch should be reverted after `nix` gets a proper fix for this. See NixOS/nix#1771.
| * | | | | | | | | | | | | | | stdenv: implement `config.checkMetaRecursively`Jan Malakhovski2018-01-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This option makes `meta.evaluate` into a close approximation of the result of evaluating `.outPath` by checking all the dependencies recursively at a cost of 2x slowdown. Note that actually evaluating `.outPath` costs some 5x-7x more because `.outPath` also computes all the hashes.
| * | | | | | | | | | | | | | | stdenv: provide `meta.evaluates`Jan Malakhovski2018-01-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This gives a way to see the result of `check-meta` without triggering any assertions.
| * | | | | | | | | | | | | | | stdenv: change some indentJan Malakhovski2018-01-14
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | stdenv: perform checks only when evaluating .drv and .outJan Malakhovski2018-01-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This pushes check-meta evaluation to derivation evaluation step, leaving all other attributes accessible. Before this commit: > $ HOME=/homeless-shelter NIX_PATH=nixpkgs=$(pwd) nix-instantiate --eval --strict ./default.nix -A xen --argstr system aarch64-linux > Package ‘xen-4.5.5’ in pkgs/applications/virtualization/xen/generic.nix:226 is not supported on ‘aarch64-linux’, refusing to evaluate. as expected > $ HOME=/homeless-shelter NIX_PATH=nixpkgs=$(pwd) nix-instantiate --eval --strict ./default.nix -A xen.name --argstr system aarch64-linux > Package ‘xen-4.5.5’ in pkgs/applications/virtualization/xen/generic.nix:226 is not supported on ‘aarch64-linux’, refusing to evaluate. > $ HOME=/homeless-shelter NIX_PATH=nixpkgs=$(pwd) nix-instantiate --eval --strict ./default.nix -A xen.meta.description --argstr system aarch64-linux > Package ‘xen-4.5.5’ in pkgs/applications/virtualization/xen/generic.nix:226 is not supported on ‘aarch64-linux’, refusing to evaluate. which is unfortunate since its impossible to use packages in autogenerated documentation on all platforms. After this commit: > $ HOME=/homeless-shelter NIX_PATH=nixpkgs=$(pwd) nix-instantiate --eval --strict ./default.nix -A xen --argstr system aarch64-linux still fails > $ HOME=/homeless-shelter NIX_PATH=nixpkgs=$(pwd) nix-instantiate --eval --strict ./default.nix -A xen.name --argstr system aarch64-linux > "xen-4.5.5" > $ HOME=/homeless-shelter NIX_PATH=nixpkgs=$(pwd) nix-instantiate --eval --strict ./default.nix -A xen.meta.description --argstr system aarch64-linux > "Xen hypervisor and related components (vanilla)"
| * | | | | | | | | | | | | | | lib: generalize `addPassthru` to `extendDerivation`Jan Malakhovski2018-01-03
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | mono54: initDan Peebles2018-01-14
| |_|/ / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Still trying to figure out how msbuild should fit into the picture...
* | | | | | | | | | | | | | | rebuild-amount.sh: add --print option (PR #33693)Vladimír Čunát2018-01-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to allow additionally listing all the rebuilt packages.
* | | | | | | | | | | | | | | Merge pull request #33865 from romildo/upd.ugetadisbladis2018-01-15
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | uget: 2.0.10 -> 2.2.0
| * | | | | | | | | | | | | | | uget: 2.0.10 -> 2.2.0José Romildo Malaquias2018-01-14
| | |/ / / / / / / / / / / / / | |/| | | | | | | | | | | | |
* | | | | | | | | | | | | | | eclipse-plugin-checkstyle: 8.5.1 -> 8.7.0Robert Helgesson2018-01-14
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | svtplay-dl: 1.9.6 -> 1.9.7Robert Helgesson2018-01-14
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | bitscope: refactored to pass nixpkgs-lintDavid Asabina2018-01-14
|/ / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The linter (nixpkgs-lint) was not able to find the bitscope packages because `recurseIntoAttrs` was not applied to the suite's set. The name supplied to `buildFHSUserEnv` produces a binary that corresponds to the binary names in the deb packages (e.g.: bitscope-dso, bitscope-chart, bitscope-logic, etc), however; this name does not constitute a valid nixpkgs name. Valid nixpkgs names satisfy the `/(.*)(-[0-9].*)$/` pattern, therefore a valid name is merged into the derivation produced by `buildFHSUserEnv`.
* | | | | | | | | | | | | | cool-retro-term: 1.0.0 -> 1.0.1adisbladis2018-01-15
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | qmltermwidget: Use fetchFromGitHubadisbladis2018-01-15
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Merge pull request #33851 from vbgl/why3-0.88.3adisbladis2018-01-15
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | why3: 0.88.1 -> 0.88.3
| * | | | | | | | | | | | | | why3: 0.88.1 -> 0.88.3Vincent Laporte2018-01-14
| | |_|_|_|_|_|_|_|/ / / / / | |/| | | | | | | | | | | |
* | | | | | | | | | | | | | Merge pull request #33839 from mimadrid/update/gephi-0.9.2adisbladis2018-01-15
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | gephi: 0.9.1 -> 0.9.2
| * | | | | | | | | | | | | | gephi: 0.9.1 -> 0.9.2Miguel Madrid Mencía2018-01-13
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge pull request #33840 from mimadrid/update/cytoscape-3.6.0adisbladis2018-01-15
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cytoscape: 3.5.1 -> 3.6.0
| * | | | | | | | | | | | | | | cytoscape: 3.5.1 -> 3.6.0Miguel Madrid Mencía2018-01-13
| |/ / / / / / / / / / / / / /
* | | | | | | | | | | | | | | Merge pull request #33841 from jonafato/skypeforlinux-8.13.0.2adisbladis2018-01-15
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | skypeforlinux: 8.11.0.4 -> 8.13.0.2
| * | | | | | | | | | | | | | | skypeforlinux: 8.11.0.4 -> 8.13.0.2Jon Banafato2018-01-13
| |/ / / / / / / / / / / / / /
* | | | | | | | | | | | | | | Merge pull request #33859 from dotlambda/netdiscoadisbladis2018-01-15
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | python3Packages.netdisco: init at 1.2.3
| * | | | | | | | | | | | | | | python3Packages.netdisco: init at 1.2.3Robert Schütz2018-01-14
| | |_|_|_|_|_|_|_|_|/ / / / / | |/| | | | | | | | | | | | |
* / | | | | | | | | | | | | | fantasque-sans-mono: 1.7.1 -> 1.7.2Robert Helgesson2018-01-14
|/ / / / / / / / / / / / / /
* | | | | | | | | | | | | | Merge pull request #33858 from dotlambda/spectre-meltdown-checkeradisbladis2018-01-14
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / / / / / |/| | | | | | | | | | | | | spectre-meltdown-checker: init at 0.29
| * | | | | | | | | | | | | spectre-meltdown-checker: init at 0.29Robert Schütz2018-01-14
|/ / / / / / / / / / / / /
* | | | | | | | | | | | | Merge pull request #33856 from jluttine/add-versioneerFrederik Rietdijk2018-01-14
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | pythonPackages.versioneer: init at 0.18
| * | | | | | | | | | | | | pythonPackages.versioneer: init at 0.18Jaakko Luttinen2018-01-14
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Merge pull request #33774 from LumiGuide/elasticsearch-curator-5.4.1-cleanupFrederik Rietdijk2018-01-14
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Elasticsearch curator 5.4.1 cleanup
| * | | | | | | | | | | | | | python-modules: removed unnecessary name attributesBas van Dijk2018-01-12
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | pythonPackages.elasticsearch: move derivation to python-modulesBas van Dijk2018-01-12
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge pull request #33855 from dotlambda/user-agentsFrederik Rietdijk2018-01-14
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pythonPackages.user-agents: init at 1.1.0
| * | | | | | | | | | | | | | | pythonPackages.user-agents: init at 1.1.0Robert Schütz2018-01-14
|/ / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | virt-manager: add gobjectIntrospection to nativeBuildInputsAndrey Golovizin2018-01-14
| | | | | | | | | | | | | | |