Commit Graph

6 Commits

Author SHA1 Message Date
Profpatsch
4a7f99d55d 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
2021-01-11 10:38:22 +01:00
Alexander Krimm
64a59a0854
vdirsyncer: disable flaky test
Disables sync_test:test_create_collection, a flaky test which exceeds its
deadline and breaks the build on hydra, e.g:
https://hydra.nixos.org/build/130683519/nixlog/1

Upstream vdirsyncer issue: https://github.com/pimutils/vdirsyncer/issues/837
2020-11-28 18:58:39 +01:00
Bart Brouns
452043842a vdirsyncer: rename stable.nix to default.nix 2020-11-16 20:23:49 +08:00
Bart Brouns
90126c3e48 vdirsyncer: delete default.nix, point vdirsyncer to stable.nix
TLDR: default.nix was pointing to an unmaintained code base whereas stable.nix is up-to-date and maintained.

History
1. At first their was one Python version of vdirsyncer that had been working fine for years. Then, maintenance decreased and the package was marked as broken in nixpkgs.
2. The original author (@untitaker on github.com) of vdirsyncer decided to re-implement (part of) vdirsyncer in Rust. Nixpkgs made `vdirsyncer` point to the Rust version and renamed the Python historical version to `vdirsyncerStable`.
3. Eventually, @untitaker gave up on the Rust version.
4. Someone else (@WhyNotHugo on github.com) decided to take over maintenance of the Python version.
5.  Mario Rodas (@marsam on github) and Damien Cassou updated the `vdirsyncerStable` to point to the work of @WhyNotHugo and mark the package as working again.
2020-11-16 20:23:49 +08:00
Damien Cassou
318fd31ee9
vdirsyncerStable: 0.16.7 -> 0.16.8 2020-07-01 09:15:51 +02:00
Doron Behar
b3e7e67a5e
vdirsyncer: Convert to a python module (#87865)
* vdirsyncer: standardize derivation

Use toPythonApplication and use callPackage from python-packages.nix.
Make vdirsyncerStable somewhat functional again, but mark it as broken
for Python 3.6 or higher.

* vdirsyncer: use buildPythonPackage as it's a package now

* vdirsyncer: move to python-modules/

* vdirsyncer: Move disabled logic into expression
2020-05-17 10:19:40 +02:00