e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, nixosTests
|
|
, python3
|
|
, fetchFromGitHub
|
|
, radicale3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication {
|
|
pname = "etesync-dav";
|
|
version = "0.32.1-unstable-2024-09-02";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "etesync";
|
|
repo = "etesync-dav";
|
|
rev = "b9b23bf6fba60d42012008ba06023bccd9109c08";
|
|
hash = "sha256-wWhwnOlwE1rFgROTSj90hlSw4k48fIEdk5CJOXoecuQ=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
appdirs
|
|
etebase
|
|
etesync
|
|
flask
|
|
flask-wtf
|
|
msgpack
|
|
setuptools
|
|
(python.pkgs.toPythonModule (radicale3.override { python3 = python; }))
|
|
requests
|
|
types-setuptools
|
|
] ++ requests.optional-dependencies.socks;
|
|
|
|
doCheck = false;
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) etesync-dav;
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.etesync.com/";
|
|
description = "Secure, end-to-end encrypted, and privacy respecting sync for contacts, calendars and tasks";
|
|
mainProgram = "etesync-dav";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ thyol valodim ];
|
|
broken = stdenv.hostPlatform.isDarwin; # pyobjc-framework-Cocoa is missing
|
|
};
|
|
}
|